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",
"name": "Element Zapper",
"version": "0.2.5",
"description": "Zap\/remove any element",
"manifest_version": 3,
"permissions": [
"activeTab"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"ElementPicker.js",
"contentScript.js"
],
"css": [
"ElementPicker.css"
],
"all_frames": false
}
],
"cross_origin_opener_policy": {
"value": "same-origin"
},
"icons": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"action": {
"default_icon": {
"16": "assets\/icon16.png",
"32": "assets\/icon32.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"default_title": "Element Zapper"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Z"
}
}
}
}