Content Warning
This extension provides customizable content warnings
Co to jest Content Warning?
Content Warning to rozszerzenie Chrome opracowane przez justinas.banys1, a jego główną funkcją jest „This extension provides customizable content warnings”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Content Warning
Pobierz pliki rozszerzeń Content Warning 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
This extension provides content warnings for particular keywords while browsing on various websites. The content warnings are easily customizable. Users can add, remove, and disable different warnings according to their preferences and whatever they find convenient using a simple interface. In case a keyword is found on some website, a pop-up is thrown providing the user with two options: continue browsing or leaving the site.
Podstawowe informacje o rozszerzeniu
Nazwa | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
Oficjalny URL | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
Opis | This extension provides customizable content warnings |
Rozmiar pliku | 17.76 KB |
Liczba instalacji | 12 |
Aktualna Wersja | 1.4.1 |
Ostatnia Aktualizacja | 2018-06-02 |
Data Publikacji | 2018-06-01 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | justinas.banys1 |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Content Warning", "description": "This extension provides customizable content warnings", "version": "1.4.1", "options_page": "options.html", "permissions": [ "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": "cw_icon.png" }, "icons": { "128": "cw_icon.png" }, "background": { "scripts": [ "js\/content.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ] } ] } |