Warn Me

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

Что такое Warn Me?

Warn Me - это расширение Chrome, разработанное Linus G., и его основная функция - "Warns you if there are any subjects that need a trigger warning on a webpage".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Warn Me

Скачайте файлы расширений 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"
    ]
}