manifest.json (348B)
1 { 2 "manifest_version": 2, 3 "name": "update", 4 "browser_specific_settings": { 5 "gecko": { 6 "id": "update@example.com" 7 } 8 }, 9 "version": "2.0", 10 "description": "Adds a blue border to all webpages matching example.com.", 11 "content_scripts": [ 12 { 13 "matches": ["*://*.example.com/*"], 14 "js": ["borderify.js"] 15 } 16 ] 17 }