Content Warning

This extension provides customizable content warnings

Apa itu Content Warning?

Content Warning adalah ekstensi Chrome yang dikembangkan oleh justinas.banys1, dan fitur utamanya adalah "This extension provides customizable content warnings".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Content Warning

Unduh file ekstensi Content Warning dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Content Warning Content Warning
ID fifecojajmdemfccknoappgllkcoihbc
URL Resmi https://chromewebstore.google.com/detail/content-warning/fifecojajmdemfccknoappgllkcoihbc
Deskripsi This extension provides customizable content warnings
Ukuran File 17.76 KB
Jumlah Instalasi 12
Versi Saat Ini 1.4.1
Terakhir Diperbarui 2018-06-02
Tanggal Publikasi 2018-06-01
Penilaian 5.00/5 Total 2 Penilaian
Pengembang justinas.banys1
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}