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": "__MSG_appName__",
"description": "__MSG_shortDesc__",
"default_locale": "en",
"version": "1.0.4",
"action": {
"default_title": "Show popup",
"default_icon": "icons\/chrome-logo-128.png"
},
"icons": {
"16": "icons\/chrome-logo-16.png",
"32": "icons\/chrome-logo-32.png",
"64": "icons\/chrome-logo-64.png",
"128": "icons\/chrome-logo-128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle",
"all_frames": true,
"match_about_blank": true
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*.png",
"icons\/*.svg"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"activeTab",
"scripting",
"storage",
"clipboardRead",
"clipboardWrite"
],
"host_permissions": [
"<all_urls>"
]
}