metamorpov/manifest.json

30 lines
588 B
JSON
Raw Normal View History

2015-02-21 22:00:28 -05:00
{
"manifest_version": 2,
2015-02-27 05:46:57 -05:00
"name": "InteractiveFics",
2015-02-21 22:00:28 -05:00
"version": "1.0",
"description": "Replaces Y/N in Reader Insert/second person fics with a name of your choice.",
"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":
[
{
"matches": ["*://*/*"],
"js": ["content_script.js"],
"run_at": "document_end"
}
],
2015-02-27 05:46:57 -05:00
"incognito": "split",
"background": {
"page": "popup.html"
}
2015-02-21 22:00:28 -05:00
}