33 lines
672 B
JSON
33 lines
672 B
JSON
{
|
|
"update_url": "https://clients2.google.com/service/update2/crx",
|
|
|
|
"manifest_version": 2,
|
|
"name": "InteractiveFics",
|
|
"version": "4.2",
|
|
"description": "Replaces Y/N & other variables in Reader Insert/second person fics with words 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":
|
|
[
|
|
{
|
|
|
|
"js": ["content_script.js"],
|
|
"run_at": "document_end",
|
|
"matches": ["*://*/*"]
|
|
}
|
|
],
|
|
"incognito": "split",
|
|
"background": {
|
|
"page": "popup.html"
|
|
}
|
|
|
|
}
|
|
|