Warn Me

Warns you if there are any subjects that need a trigger warning on a webpage

Warn Meとは何ですか?

Warn MeはLinus G.によって開発されたChromeの拡張機能で、その主な機能は「Warns you if there are any subjects that need a trigger warning on a webpage」です。

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

screenshot

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

Warn Me拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension will warn you if any potentially triggering subjects appear on a webpage, allowing you to browse the Internet safely. You can also blacklist your own keywords if you want to add your own.

The storage permission is used only to store words that you personally think are triggering, if you want to add your own. 

Enjoy!                    

拡張機能の基本情報

名前 Warn Me Warn Me
ID koglokeamlegaaidhjnjdbifcpnkoafg
公式URL https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg
説明 Warns you if there are any subjects that need a trigger warning on a webpage
ファイルサイズ 160 KB
インストール数 64
現在のバージョン 1.0
最終更新日 2016-09-30
公開日 2016-09-29
評価 4.17/5 合計 12 レビュー
開発者 Linus G.
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/LinusGordon/warn-me
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Warn Me",
    "short_name": "Warn Me",
    "description": "Warns you if there are any subjects that need a trigger warning on a webpage",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "findtrig.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}