Youtube-shorts block
Play the Youtube shorts video as if it were a normal video.
Youtube-shorts block क्या है?
Youtube-shorts block doma_itachi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Play the Youtube shorts video as if it were a normal video."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube-shorts block एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A extension allows youtube shorts videos to play on a regular page. *** "Hide shorts video" is now enabled by default!!!! If you don't want to do that, please disable in option page! *** The UI of Youtube-shorts is not very well optimized for PCs and has poor functionality. This extension aims to improve the user experience by displaying short videos in the regular video player. ...utube.com/shorts/"video-id" ↓↓ ...utube.com/watch?v="video-id" Change the URL to something like. v1.4.1 features # Added - German translation from @golgorath # Changed - Support new subscription page(Hide shorts video) v1.4.0 features # Added - Support mobile (m.youtube.com) - Enable "Hide shorts video" by default v1.3.4 features # Added - Block shorts reels (if Hide shorts video is enabled) v1.3.3 features # Added - French translation from @Rathmox v1.3.2 features # Added - Italian translation from @gioxx v1.3.1 features # Changed - Fixed a bug that redirected links that were not short videos containing the string "shorts" v1.3.0 features # Added - Added "Open in regular player" button in the Shorts player - Block Shorts-related feeds (if Hide shorts video is enabled) - Add a Release notes # Changed - Fixed the problem that the load spinner does not disappear when "Hide Shorts video" is selected - Optimize "hide shorts video" If you have any bugs or requests for this extension, please feel free to report them to the author's Twitter (@itachi_yukari) DM (or review). We may be able to help.
एक्सटेंशन की मूल जानकारी
नाम | Youtube-shorts block |
ID | jiaopdjbehhjgokpphdfgmapkobbnmjp |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-shorts-block/jiaopdjbehhjgokpphdfgmapkobbnmjp |
विवरण | Play the Youtube shorts video as if it were a normal video. |
फ़ाइल का आकार | 33.77 KB |
स्थापना संख्या | 187,882 |
वर्तमान संस्करण | 1.4.1 |
अंतिम अपडेट | 2023-06-08 |
प्रकाशन तिथि | 2022-03-02 |
रेटिंग | 4.59/5 कुल 593 रेटिंग्स |
डेवलपर | doma_itachi |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/doma-itachi/Youtube-shorts-block |
सहायता पृष्ठ URL | https://twitter.com/itachi_yukari |
समर्थित भाषाएँ | de,en,fr,tr,it,zh-TW,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube-shorts block", "version": "1.4.1", "description": "__MSG_ext_desc__", "default_locale": "en", "icons": { "32": "icons\/icon32.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/m.youtube.com\/*" ], "all_frames": true, "js": [ "main.js" ], "css": [ "main.css" ] } ], "action": { "default_icon": { "32": "icons\/icon32.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "default_title": "Youtube-shorts block", "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "icons\/to_normal.svg" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |