4chan-x/src/meta/manifest.json

32 lines
858 B
JSON

{
"name": "<%= meta.name %>",
"version": "<%= readJSON('version.json').version %>",
"manifest_version": 2,
"description": "<%= description %>",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [{
"js": ["script.js"],
"matches": <%= JSON.stringify(meta.matches) %>,
"exclude_matches": <%= JSON.stringify(meta.exclude_matches) %>,
"all_frames": true,
"run_at": "document_start"
}],
"background": {
"scripts": ["eventPage.js"],
"persistent": false
},
"homepage_url": "<%= meta.page %>",
<% if (channel !== '-noupdate') { %> "update_url": "<%= meta.downloads %>updates<%= channel %>.xml",
"key": "<%= meta.appid %>",
<% } %> "minimum_chrome_version": "<%= meta.min.chrome %>",
"permissions": [
"storage",
"http://*/",
"https://*/"
]
}