Warn Me

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

Co je Warn Me?

Warn Me je rozšíření Chrome vyvinuté Linus G., a jeho hlavní funkcí je „Warns you if there are any subjects that need a trigger warning on a webpage“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Warn Me

Stáhněte si soubory rozšíření Warn Me ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Warn Me Warn Me
ID koglokeamlegaaidhjnjdbifcpnkoafg
Oficiální URL https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg
Popis Warns you if there are any subjects that need a trigger warning on a webpage
Velikost souboru 160 KB
Počet instalací 64
Aktuální Verze 1.0
Poslední Aktualizace 2016-09-30
Datum Vydání 2016-09-29
Hodnocení 4.17/5 Celkem 12 Hodnocení
Vývojář Linus G.
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/LinusGordon/warn-me
Podporované Jazyky 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"
    ]
}