Destroy It!
Toggle the ability to destroy any ads or annoying elements of a webpage.
Vad är Destroy It!?
Destroy It! är en Chrome-tillägg utvecklad av thejackcohen, och dess huvudfunktion är "Toggle the ability to destroy any ads or annoying elements of a webpage.".
Tilläggsskärmbilder
Ladda ner Destroy It!-förlängningens CRX-fil
Ladda ner Destroy It!-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
Namn | |
ID | ijikkmpakihdnnccdjpcbfomojdfbjhj |
Officiell webbadress | https://chrome.google.com/webstore/detail/destroy-it/ijikkmpakihdnnccdjpcbfomojdfbjhj |
Beskrivning | Toggle the ability to destroy any ads or annoying elements of a webpage. |
Filstorlek | 80.51 KB |
Antal Installationer | 4,851 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2015-12-27 |
Publiceringsdatum | 2015-12-27 |
Betyg | 2.26/5 Totalt 19 Betyg |
Utvecklare | thejackcohen |
Betalningssätt | free |
Stödda Språk | 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:\/\/*\/*" ] } |