30 lines
588 B
JSON
30 lines
588 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "InteractiveFics",
|
|
"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"
|
|
}
|
|
],
|
|
"incognito": "split",
|
|
"background": {
|
|
"page": "popup.html"
|
|
}
|
|
|
|
}
|
|
|