DOM Destroyer
Delete anything on a website with a click.
什么是DOM Destroyer?
DOM Destroyer是由Phil Schleihauf开发的Chrome扩展程序,该扩展的主要功能是“Delete anything on a website with a click.”。
扩展截图
下载DOM Destroyer扩展crx文件
下载DOM Destroyer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
DOM Destroyer empowers you to remove anything that annoys you from a web page by just clicking on it. Get rid of newsletter popups, content-hiding overlays, and all kinds of other noisy clutter!
Note that this extension only temporarily hides elements from your view -- to get them back, just refresh the page. 扩展基本信息
| 名称 | |
| ID | cgkjfaoibdibeghgeplabcbineebklgf |
| 官方URL | https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf |
| 简介 | Delete anything on a website with a click. |
| 文件大小 | 12.62 KB |
| 安装次数 | 2,836 |
| 当前版本 | 0.3 |
| 更新时间 | 2021-03-29 |
| 上架时间 | 2014-02-25 |
| 评分 | 3.76/5 共17次评分 |
| 开发者 | Phil Schleihauf |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://github.com/uniphil/dom-destroyer |
| 帮助页面URL | http://github.com/uniphil/dom-destroyer/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "DOM Destroyer",
"description": "Delete anything on a website with a click.",
"version": "0.3",
"browser_action": {
"default_title": "Destroy DOM",
"default_icon": "destroy_128.png"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"toggle-armed": {
"suggested_key": {
"default": "Ctrl+Shift+L"
},
"description": "Toggle DOM destruction mode"
}
},
"homepage_url": "http:\/\/github.com\/uniphil\/dom-destroyer"
} | |