Youtube Trigger Warning
Hide triggering videos on Youtube.
Youtube Trigger Warning क्या है?
Youtube Trigger Warning yttriggerwarning द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide triggering videos on Youtube."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Trigger Warning एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Hide triggering videos on Youtube according to different filters, or add your own terms to hide videos with. Any video with a blocked term in the title is hidden on Youtube. This can help you avoid triggers for eating disorders, self harm, suicide, or anything else. Note that this won't be able to definitely hide every trigger, but it can certainly help you manage your exposure to them.
एक्सटेंशन की मूल जानकारी
नाम | Youtube Trigger Warning |
ID | dhaighcmggigocehbgigdbmgpkhcekgl |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-trigger-warning/dhaighcmggigocehbgigdbmgpkhcekgl |
विवरण | Hide triggering videos on Youtube. |
फ़ाइल का आकार | 42.74 KB |
स्थापना संख्या | 33 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2021-08-10 |
प्रकाशन तिथि | 2021-08-10 |
रेटिंग | 2.00/5 कुल 3 रेटिंग्स |
डेवलपर | yttriggerwarning |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Trigger Warning", "description": "Hide triggering videos on Youtube.", "version": "1.0", "manifest_version": 3, "permissions": [ "background", "storage" ], "host_permissions": [ "http:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "run_at": "document_end", "js": [ "jQuery-3.6.0-production.js", "content.js" ], "all_frames": true } ], "action": { "default_popup": "popup.html" }, "options_page": "options.html", "icons": { "48": "yttwicon48.png", "128": "yttwicon128.png" } } |