This repository has been archived on 2024-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
template-chrome-extension/manifest copy.json

62 lines
1.2 KiB
JSON

{
"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
}
}