metamorpov/manifest.json

33 lines
672 B
JSON
Raw Normal View History

2015-02-21 22:00:28 -05:00
{
"update_url": "https://clients2.google.com/service/update2/crx",
2015-02-21 22:00:28 -05:00
"manifest_version": 2,
2015-02-27 05:46:57 -05:00
"name": "InteractiveFics",
2016-06-18 23:04:38 -04:00
"version": "4.2",
2016-05-28 19:08:49 -04:00
"description": "Replaces Y/N & other variables in Reader Insert/second person fics with words of your choice.",
2015-02-21 22:00:28 -05:00
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html" },
"permissions": [
"storage",
"tabs"],
"icons": { "16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png" },
"content_scripts":
[
{
2015-03-05 02:32:46 -05:00
2015-02-21 22:00:28 -05:00
"js": ["content_script.js"],
2015-03-05 02:32:46 -05:00
"run_at": "document_end",
"matches": ["*://*/*"]
2015-02-21 22:00:28 -05:00
}
],
2015-02-27 05:46:57 -05:00
"incognito": "split",
"background": {
"page": "popup.html"
}
2015-02-21 22:00:28 -05:00
}