manifest.json (533B)
1 { 2 "manifest_version": 2, 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 "optional_permissions": ["clipboardRead", "*://developer.mozilla.org/*"] 24 }