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