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_extensionName__",
"version": "1.0.7",
"description": "__MSG_extensionDescription__",
"permissions": [
"scripting",
"tabs",
"storage",
"clipboardWrite"
],
"background": {
"service_worker": "background\/background.js"
},
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/content.js"
],
"run_at": "document_start",
"all_frames": false,
"match_about_blank": false
}
],
"action": {
"default_title": "__MSG_extensionName__",
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
},
"options_page": "options\/options.html",
"devtools_page": "devtools\/devtools.html",
"default_locale": "en",
"web_accessible_resources": [
{
"resources": [
"inject\/inject-main-world.js",
"shared\/i18n.js"
],
"matches": [
"<all_urls>"
]
}
],
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"minimum_chrome_version": "88"
}