{ "manifest_version": 2, "name": "Floating cats", "version": "0.1", "author": "Uko Kokņevičs", "description": "Adds floating cats to all websites", "icons": { "200": "/marsey3d.webp" }, "background": { "scripts": ["/bg.js"], //"service_worker": "/bg.js", "persistent": false, "type": "module" }, "browser_action": { "default_area": "navbar" }, "browser_specific_settings": { "gecko": { "id": "floating-cats@enes.lv" }, "gecko_android": { "id": "floating-cats@enes.lv" } }, "content_scripts": [{ "css": ["/floating-cats.css"], "matches": [""], "match_about_blank": true, "js": ["/floating-cats.js"], "run_at": "document_end" }], "options_ui": { "browser_style": false, "open_in_tab": true, "page": "options/options.html" }, "permissions": [ "storage" ], "web_accessible_resources": [ "bobvibes.webp", "marsey3d.webp" ] }