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 "permissions": [ 18 "storage", 19 "scripting" 20 ], 21 "host_permissions": [ 22 "https://*/*", 23 "http://*/*" 24 ], 25 "browser_specific_settings": { 26 "gecko": { 27 "id": "[email protected]" 28 } 29 } 30} 31 32