{ "manifest_version": 2, "name": "CRX Template 1", "description": "CRX Template 1", "version": "0.1.0.1", "icons": { "128":"icon128.png", "64":"icon64.png", "48":"icon48.png", "32":"icon32.png", "24":"icon24.png", "16":"icon16.png" }, "page_action" : { "default_popup": "popup.html", "default_icon" : { "128":"icon128.png", "64":"icon64.png", "48":"icon48.png", "32":"icon32.png", "24":"icon24.png", "16":"icon16.png" } }, "permissions": [ "activeTab", "declarativeContent", "tabs", "http://*/*", "https://*/*" ], "content_scripts": [ { "js": [ "jquery/3.4.1/jquery.min.js", "bootstrap/3.4.1/bootstrap.min.js" ], "matches": [ "http://*/*", "https://*/*" ] }, { "js" : [ "content.js" ], "matches" : [ "http://*/*", "https://*/*" ], "run_at" : "document_idle" } ], "background": { "scripts": [ "jquery/3.4.1/jquery.min.js", "bootstrap/3.4.1/bootstrap.min.js", "background.js" ], "persistent": true } }