Content Warning
This extension provides customizable content warnings
Vad är Content Warning?
Content Warning är en Chrome-tillägg utvecklad av justinas.banys1, och dess huvudfunktion är "This extension provides customizable content warnings".
Tilläggsskärmbilder
Ladda ner Content Warning-förlängningens CRX-fil
Ladda ner Content Warning-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Content Warning |
ID | fifecojajmdemfccknoappgllkcoihbc |
Officiell webbadress | https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc |
Beskrivning | This extension provides customizable content warnings |
Filstorlek | 17.76 KB |
Antal Installationer | 12 |
Aktuell Version | 1.4.1 |
Senast Uppdaterad | 2018-06-02 |
Publiceringsdatum | 2018-06-01 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | justinas.banys1 |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |