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 |
| Eメール | [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"
} | |