Warn Me
Warns you if there are any subjects that need a trigger warning on a webpage
Warn Me क्या है?
Warn Me Linus G. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Warns you if there are any subjects that need a trigger warning on a webpage"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Warn Me एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |