Content Warning
This extension provides customizable content warnings
Cos'è Content Warning?
Content Warning è un'estensione di Chrome sviluppata da justinas.banys1, e la sua funzione principale è "This extension provides customizable content warnings".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Content Warning
Scarica i file di estensione Content Warning in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
URL Ufficiale | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
Descrizione | This extension provides customizable content warnings |
Dimensione del File | 17.76 KB |
Conteggio Installazioni | 12 |
Versione Corrente | 1.4.1 |
Ultimo Aggiornamento | 2018-06-02 |
Data di Pubblicazione | 2018-06-01 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | justinas.banys1 |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |