Warn Me

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

Wat is Warn Me?

Warn Me is een Chrome-extensie ontwikkeld door Linus G., en de belangrijkste functie is "Warns you if there are any subjects that need a trigger warning on a webpage".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Warn Me

Download Warn Me-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Warn Me Warn Me
ID koglokeamlegaaidhjnjdbifcpnkoafg
Officiële URL https://chromewebstore.google.com/detail/warn-me/koglokeamlegaaidhjnjdbifcpnkoafg
Beschrijving Warns you if there are any subjects that need a trigger warning on a webpage
Bestandsgrootte 160 KB
Aantal Installaties 64
Huidige Versie 1.0
Laatst Bijgewerkt 2016-09-30
Publicatiedatum 2016-09-29
Beoordeling 4.17/5 Totaal 12 Beoordelingen
Ontwikkelaar Linus G.
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/LinusGordon/warn-me
Ondersteunde Talen 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"
    ]
}