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": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "3.3",
"icons": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"96": "icon\/96.png",
"128": "icon\/128.png"
},
"default_locale": "en",
"permissions": [
"activeTab",
"declarativeNetRequestWithHostAccess",
"contextMenus",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"commands": {
"toggle-companion-window": {
"suggested_key": {
"default": "Alt+C",
"mac": "Alt+C"
},
"description": "__MSG_toggleCompanionWindow__"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self' 'wasm-unsafe-eval'; worker-src 'self' 'wasm-unsafe-eval';"
},
"action": {
"default_icon": {
"16": "icon\/16.png",
"32": "icon\/32.png",
"48": "icon\/48.png",
"128": "icon\/128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"icon\/*",
"pip.html",
"pip.css"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"type": "module",
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"content-scripts\/content.js"
]
}
]
}