1{ 2 "name": "A browser action with a popup that automatically clicks links matching a regexp", 3 "description": "Follow links", 4 "version": "1.0", 5 "permissions": [ 6 "tabs", "http://*/*", "https://*/*" 7 ], 8 "background": { "scripts": ["background.js"] }, 9 "browser_action": { 10 "default_title": "Follow links.", 11 "default_icon": "icon.png", 12 "default_popup": "popup.html" 13 }, 14 "content_scripts": [ 15 { 16 "matches": ["http://*/*", "https://*/*"], 17 "js": ["content.js"] 18 } 19 ], 20 "manifest_version": 2 21} 22