Destroy It!
Toggle the ability to destroy any ads or annoying elements of a webpage.
Destroy It!とは何ですか?
Destroy It!はthejackcohenによって開発されたChromeの拡張機能で、その主な機能は「Toggle the ability to destroy any ads or annoying elements of a webpage.」です。
拡張機能のスクリーンショット
Destroy It!拡張機能のCRXファイルをダウンロード
Destroy It!拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
名前 | |
ID | ijikkmpakihdnnccdjpcbfomojdfbjhj |
公式URL | https://chrome.google.com/webstore/detail/destroy-it/ijikkmpakihdnnccdjpcbfomojdfbjhj |
説明 | Toggle the ability to destroy any ads or annoying elements of a webpage. |
ファイルサイズ | 80.51 KB |
インストール数 | 4,851 |
現在のバージョン | 1.0 |
最終更新日 | 2015-12-27 |
公開日 | 2015-12-27 |
評価 | 2.26/5 合計 19 レビュー |
開発者 | thejackcohen |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Destroy It!", "short_name": "Destroy It!", "description": "Toggle the ability to destroy any ads or annoying elements of a webpage.", "version": "1.0", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png", "256": "images\/icon256.png" }, "browser_action": { "default_icon": "images\/icon128.png", "default_popup": "src\/popup.html", "default_title": "Destroy It!" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/destroy.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ] } |