Destroy It!
Toggle the ability to destroy any ads or annoying elements of a webpage.
What is Destroy It!?
Destroy It! is a Chrome extension developed by thejackcohen, and its main feature is "Toggle the ability to destroy any ads or annoying elements of a webpage.".
Extension Screenshots
Download Destroy It! Extension CRX File
Download Destroy It! extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | |
ID | ijikkmpakihdnnccdjpcbfomojdfbjhj |
Official URL | https://chrome.google.com/webstore/detail/destroy-it/ijikkmpakihdnnccdjpcbfomojdfbjhj |
Description | Toggle the ability to destroy any ads or annoying elements of a webpage. |
File Size | 80.51 KB |
Installation Count | 4,851 |
Current Version | 1.0 |
Last Updated | 2015-12-27 |
Publish Date | 2015-12-27 |
Rating | 2.26/5 Total 19 Ratings |
Developer | thejackcohen |
Payment Type | free |
Supported Languages | 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:\/\/*\/*" ] } |