Content Warning

This extension provides customizable content warnings

Hvad er Content Warning?

Content Warning er en Chrome-udvidelse udviklet af justinas.banys1, og dens hovedfunktion er "This extension provides customizable content warnings".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Content Warning-udvidelses-CRX-fil

Download Content Warning-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Content Warning Content Warning
ID fifecojajmdemfccknoappgllkcoihbc
Officiel URL https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc
Beskrivelse This extension provides customizable content warnings
Filstørrelse 17.76 KB
Antal Installationer 12
Nuværende Version 1.4.1
Senest Opdateret 2018-06-02
Udgivelsesdato 2018-06-01
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler justinas.banys1
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}