Content Warning
This extension provides customizable content warnings
Wat is Content Warning?
Content Warning is een Chrome-extensie ontwikkeld door justinas.banys1, en de belangrijkste functie is "This extension provides customizable content warnings".
Extensie Screenshots
Download het CRX-bestand van de extensie Content Warning
Download Content Warning-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
Officiële URL | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
Beschrijving | This extension provides customizable content warnings |
Bestandsgrootte | 17.76 KB |
Aantal Installaties | 12 |
Huidige Versie | 1.4.1 |
Laatst Bijgewerkt | 2018-06-02 |
Publicatiedatum | 2018-06-01 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | justinas.banys1 |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |