blob: 69e480dc60dda6062a7f9d3805a26dda6297d309 [file] [log] [blame] [edit]
{
"manifest_version": 3,
"name": "webextensions-selenium-example",
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium",
"version": "0.1",
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"inject.js"
]
}
],
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}