Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Companion Window | Always on Top", "description": "Transform any webpage into a floating, always-on-top window for seamless multitasking and enhanced productivity", "version": "1.3", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_start" } ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "action": { "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" } }, "permissions": [ "activeTab", "declarativeNetRequestWithHostAccess", "contextMenus", "storage" ], "host_permissions": [ "<all_urls>" ], "web_accessible_resources": [ { "resources": [ "welcome.html", "welcome.js" ], "matches": [ "<all_urls>" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } }