Destroy It!
Toggle the ability to destroy any ads or annoying elements of a webpage.
Co to jest Destroy It!?
Destroy It! to rozszerzenie Chrome opracowane przez thejackcohen, a jego główną funkcją jest „Toggle the ability to destroy any ads or annoying elements of a webpage.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Destroy It!
Pobierz pliki rozszerzeń Destroy It! w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ijikkmpakihdnnccdjpcbfomojdfbjhj |
Oficjalny URL | https://chrome.google.com/webstore/detail/destroy-it/ijikkmpakihdnnccdjpcbfomojdfbjhj |
Opis | Toggle the ability to destroy any ads or annoying elements of a webpage. |
Rozmiar pliku | 80.51 KB |
Liczba instalacji | 4,851 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2015-12-27 |
Data Publikacji | 2015-12-27 |
Ocena | 2.26/5 Łącznie 19 Oceny |
Deweloper | thejackcohen |
Typ Płatności | free |
Obsługiwane Języki | 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:\/\/*\/*" ] } |