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.
电子邮箱 [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"
    ]
}