Content Warning
This extension provides customizable content warnings
Qu'est-ce que Content Warning ?
Content Warning est une extension Chrome développée par justinas.banys1, et sa fonction principale est "This extension provides customizable content warnings".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Content Warning
Téléchargez les fichiers d'extension Content Warning au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
URL Officiel | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
Description | This extension provides customizable content warnings |
Taille du Fichier | 17.76 KB |
Nombre d'Installations | 12 |
Version Actuelle | 1.4.1 |
Dernière Mise à Jour | 2018-06-02 |
Date de Publication | 2018-06-01 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | justinas.banys1 |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |