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,
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "public\/images\/icon.png",
"48": "public\/images\/icon.png",
"128": "public\/images\/icon.png"
},
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"permissions": [
"storage",
"tabs",
"alarms"
],
"background": {
"service_worker": ".\/background.bundle.js",
"type": "module"
},
"content_scripts": [
{
"exclude_globs": [
"http:\/\/localhost:*\/*"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
".\/content.bundle.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"public\/*"
],
"type": "module"
}
],
"default_locale": "en",
"description": "__MSG__extensionDescription__",
"name": "__MSG__extensionName__",
"version": "2.1.3"
}