manifest.json (628B)
1 { 2 "manifest_version": 3, 3 "name": "Borderify", 4 "version": "1.0", 5 "description": "Adds a red border to all webpages matching example.com.", 6 "browser_specific_settings": { 7 "gecko": { 8 "id": "borderify@tests.mozilla.org" 9 } 10 }, 11 "icons": { 12 "48": "icons/border-48.png" 13 }, 14 "content_scripts": [ 15 { 16 "matches": ["*://*.example.com/*"], 17 "js": ["borderify.js"] 18 } 19 ], 20 "options_ui": { 21 "page": "dummy.html" 22 }, 23 "granted_host_permissions": true, 24 "optional_permissions": ["clipboardRead", "*://opt-host-perm.example.com/*"], 25 "host_permissions": ["*://host-perm.example.com/*"] 26 }