Warn Me

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

Qu'est-ce que Warn Me ?

Warn Me est une extension Chrome développée par Linus G., et sa fonction principale est "Warns you if there are any subjects that need a trigger warning on a webpage".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Warn Me

Téléchargez les fichiers d'extension Warn Me au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Warn Me Warn Me
ID koglokeamlegaaidhjnjdbifcpnkoafg
URL Officiel https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg
Description Warns you if there are any subjects that need a trigger warning on a webpage
Taille du Fichier 160 KB
Nombre d'Installations 64
Version Actuelle 1.0
Dernière Mise à Jour 2016-09-30
Date de Publication 2016-09-29
Évaluation 4.17/5 Total 12 Évaluations
Développeur Linus G.
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/LinusGordon/warn-me
Langues Prises en Charge 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"
    ]
}