Content Warning

This extension provides customizable content warnings

Was ist Content Warning?

Content Warning ist eine Chrome-Erweiterung, die von justinas.banys1 entwickelt wurde, und ihr Hauptmerkmal ist "This extension provides customizable content warnings".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Content Warning-Erweiterungs-CRX-Datei herunterladen

Laden Sie Content Warning-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Content Warning Content Warning
ID fifecojajmdemfccknoappgllkcoihbc
Offizielle URL https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc
Beschreibung This extension provides customizable content warnings
Dateigröße 17.76 KB
Installationsanzahl 12
Aktuelle Version 1.4.1
Letztes Update 2018-06-02
Veröffentlichungsdatum 2018-06-01
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler justinas.banys1
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}