Content Warning

This extension provides customizable content warnings

Τι είναι το Content Warning;

Το Content Warning είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον justinas.banys1, και η κύρια λειτουργία του είναι "This extension provides customizable content warnings".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Content Warning

Λήψη αρχείων επέκτασης Content Warning σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Content Warning Content Warning
ID fifecojajmdemfccknoappgllkcoihbc
Επίσημο URL https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc
Περιγραφή This extension provides customizable content warnings
Μέγεθος Αρχείου 17.76 KB
Αριθμός Εγκαταστάσεων 12
Τρέχουσα Έκδοση 1.4.1
Τελευταία Ενημέρωση 2018-06-02
Ημερομηνία Δημοσίευσης 2018-06-01
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής justinas.banys1
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}