{ "$schema": "http://json.schemastore.org/webextension", "manifest_version": 2, "name": "Tildes ReExtended", "description": "An updated and reimagined recreation of Tildes Extended to enhance and improve the experience of Tildes.net.", "version": "1.0.1", "permissions": [ "downloads", "storage", "*://tildes.net/*" ], "content_security_policy": "script-src 'self'; object-src 'self'; style-src 'unsafe-inline'", "web_accessible_resources": [ "./assets/**" ], "icons": { "128": "./assets/tildes-reextended-128.png" }, "background": { "scripts": [ "./background.ts" ] }, "browser_action": { "default_icon": { "128": "./assets/tildes-reextended-128.png" } }, "options_ui": { "page": "./index.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "*://tildes.net/*" ], "run_at": "document_end", "css": [ "./scss/scripts.scss" ], "js": [ "./content-scripts.ts" ] } ], "applications": { "gecko": { "id": "{3a6a9b87-5ea1-441c-98d8-e27a1a0958c8}" } } }