Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "unino-ext", "version": "0.0.1", "description": "webext template powered by vite and react", "action": { "default_icon": ".\/assets\/unocss.png", "default_popup": ".\/dist\/popup\/index.html" }, "options_ui": { "page": ".\/dist\/options\/index.html", "open_in_tab": true }, "background": { "service_worker": ".\/dist\/background\/index.global.js" }, "icons": { "16": ".\/assets\/unocss.png", "48": ".\/assets\/unocss.png", "128": ".\/assets\/unocss.png" }, "permissions": [ "tabs", "storage", "activeTab" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/", "file:\/\/\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ ".\/dist\/contentScripts\/index.global.js" ] } ], "web_accessible_resources": [ { "resources": [ "dist\/contentScripts\/style.css", "dist\/contentScripts\/sdk.global.js" ], "matches": [ "<all_urls>" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } }