manifest.json (434B)
1 { 2 "manifest_version": 2, 3 "name": "update", 4 "browser_specific_settings": { 5 "gecko": { 6 "id": "update-with-perms@example.com", 7 "update_url": "https://example.org/tests/junit/update_manifest.json" 8 } 9 }, 10 "version": "1.0", 11 "description": "Adds a red border to all webpages matching example.com.", 12 "content_scripts": [ 13 { 14 "matches": ["*://*.example.com/*"], 15 "js": ["borderify.js"] 16 } 17 ] 18 }