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": "ClickFix Block",
"version": "0.0.7",
"default_locale": "en",
"description": "__MSG_appDescription__",
"permissions": [
"storage",
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"world": "MAIN",
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"exclude_matches": [
"https:\/\/chromewebstore.google.com\/*",
"https:\/\/cloud.google.com\/*",
"https:\/\/*.cloud.google.com\/*",
"https:\/\/admin.google.com\/*",
"https:\/\/*.microsoft.com\/*",
"https:\/\/*.microsoftonline.com\/*",
"https:\/\/portal.azure.com\/*",
"https:\/\/*.aws.amazon.com\/*"
],
"js": [
"inject.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"128": "assets\/eye.ico"
},
"externally_connectable": {
"matches": [
"<all_urls>"
]
}
}