4chan-x/src/manifest.json
Nicolas Stepien 44499fe784 Fix #1025.
2013-04-14 22:32:10 +02:00

23 lines
491 B
JSON

{
"name": "<%= meta.name %>",
"version": "<%= 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) %>,
"all_frames": true,
"run_at": "document_start"
}],
"homepage_url": "<%= meta.page %>",
"minimum_chrome_version": "26",
"permissions": [
"storage"
]
}