blob: a8b4fec6e60f97b94892ad8accbe14d34a8e7a89 [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"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}