YouTube Spam Remover
Hides most YouTube spam comments
YouTube Spam Remover क्या है?
YouTube Spam Remover Luke Pflibsen-Jones द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hides most YouTube spam comments"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Spam Remover एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Detects spam comments and automatically hides them, protecting its users from spoofers, adult content pushers, and other annoyances. If the add-on hides a comment you want to see, simply click the "Likely spam (+)" text and it will reveal the hidden comment (with the profile picture blurred just in case). Displaying the reason the comment was marked as spam can be disabled/enabled via the "spam reason labels" in the options menu.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Spam Remover |
ID | gmlbmlpbijkhcdhfaaimaehgjfjccffd |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-spam-remover/gmlbmlpbijkhcdhfaaimaehgjfjccffd |
विवरण | Hides most YouTube spam comments |
फ़ाइल का आकार | 938 KB |
स्थापना संख्या | 1,206 |
वर्तमान संस्करण | 2.1.0 |
अंतिम अपडेट | 2023-12-07 |
प्रकाशन तिथि | 2022-02-03 |
रेटिंग | 2.57/5 कुल 7 रेटिंग्स |
डेवलपर | Luke Pflibsen-Jones |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/lukepfjo/YouTube-Spam-Remover |
सहायता पृष्ठ URL | https://github.com/luketimothyjones/youtube-spam-remover/issues/ |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Spam Remover", "version": "2.1.0", "description": "Hides most YouTube spam comments", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "unlimitedStorage" ], "host_permissions": [ "https:\/\/yt3.ggpht.com\/*", "https:\/\/raw.githubusercontent.com\/lukepfjo\/YouTube-Spam-Remover\/main\/src\/extern\/opennsfwjs\/model\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/youtube.com\/watch*" ], "js": [ "yt-spam-remover.js", "opennsfw.min.js", "pixelmatch.min.js" ], "css": [ "yt-spam-remover.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "yt-spam-remover-worker.js", "opennsfw.min.js", "pixelmatch.min.js", "allowed-sites.json.gz" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*" ] } ], "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png" }, "default_popup": "gui\/ytsr-gui-tab.html" }, "options_ui": { "page": "gui\/ytsr-gui-options.html", "browser_style": true }, "background": { "service_worker": "yt-spam-remover-background.js" } } |