Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/common/extensions/webextensions-selenium-example-signed/manifest.json
2884 views
1
{
2
"manifest_version": 3,
3
"name": "webextensions-selenium-example",
4
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium",
5
"version": "0.1",
6
"content_scripts": [
7
{
8
"matches": [
9
"https://*/*",
10
"http://*/*"
11
],
12
"js": [
13
"inject.js"
14
]
15
}
16
],
17
"browser_specific_settings": {
18
"gecko": {
19
"id": "[email protected]"
20
}
21
}
22
}
23