{ "update_url": "https://clients2.google.com/service/update2/crx", "manifest_version": 2, "name": "InteractiveFics", "version": "4.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": [ { "js": ["content_script.js"], "run_at": "document_end", "matches": ["*://*/*"] } ], "incognito": "split", "background": { "page": "popup.html" } }