Content Warning

This extension provides customizable content warnings

Content Warningとは何ですか?

Content Warningはjustinas.banys1によって開発されたChromeの拡張機能で、その主な機能は「This extension provides customizable content warnings」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Content Warning拡張機能のCRXファイルをダウンロード

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"
            ]
        }
    ]
}