No YouTube Shorts
Removes all Shorts from YouTube
No YouTube Shorts क्या है?
No YouTube Shorts Ben द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes all Shorts from YouTube"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में No YouTube Shorts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Tired of the YouTube Shorts? No problem, this extension has your back and removes them from the YouTube page! New in version 0.6.2: - Bugfixes Bugs? Improvement ideas? Feel free to message me.
एक्सटेंशन की मूल जानकारी
नाम | No YouTube Shorts |
ID | hjfkenebldkfgibelglepinlabpjfbll |
आधिकारिक URL | https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll |
विवरण | Removes all Shorts from YouTube |
फ़ाइल का आकार | 37.34 KB |
स्थापना संख्या | 60,000 |
वर्तमान संस्करण | 0.6.2 |
अंतिम अपडेट | 2023-09-27 |
प्रकाशन तिथि | 2022-03-03 |
रेटिंग | 4.31/5 कुल 240 रेटिंग्स |
डेवलपर | Ben |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No YouTube Shorts", "description": "Removes all Shorts from YouTube", "version": "0.6.2", "action": { "default_popup": "popup.html", "default_title": "No YouTube Shorts" }, "manifest_version": 3, "default_locale": "en", "permissions": [ "declarativeContent", "storage", "tabs", "management" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "no-youtube-shorts-content-script.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "service_worker": "no-youtube-shorts-background-script.js" }, "icons": { "48": "assets\/img\/logo48.png", "128": "assets\/img\/logo128.png" }, "web_accessible_resources": [ { "resources": [ "assets\/no-youtube-shorts.css" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |