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.
擴展基本資訊
名稱 | DOM Destroyer |
ID | cgkjfaoibdibeghgeplabcbineebklgf |
官方網址 | 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" } |