remove YouTube TV button
removes 'play on TV' button on YouTube
remove YouTube TV button क्या है?
remove YouTube TV button Sveagruva द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "removes 'play on TV' button on YouTube"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में remove YouTube TV button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
'play on TV' button is annoying element of YouTube and also is kind of dangerous. You no longer need to worry about accidentally pressing that button because it doesn't exist anymore after installing this extension. ============== 0.1.3 update fixes 'play on TV' button for youtube redesign clicking no longer disables extension. if you see green checkmark it will perform same action as it did in 0.1.2.
एक्सटेंशन की मूल जानकारी
नाम | remove YouTube TV button |
ID | lcblinegofgihklfnclgedlfcolbacpl |
आधिकारिक URL | https://chromewebstore.google.com/detail/remove-youtube-tv-button/lcblinegofgihklfnclgedlfcolbacpl |
विवरण | removes 'play on TV' button on YouTube |
फ़ाइल का आकार | 27.89 KB |
स्थापना संख्या | 3,748 |
वर्तमान संस्करण | 0.1.3 |
अंतिम अपडेट | 2022-11-09 |
प्रकाशन तिथि | 2020-12-15 |
रेटिंग | 4.91/5 कुल 56 रेटिंग्स |
डेवलपर | Sveagruva |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/sveagruva/remove_youtube_tv_button |
समर्थित भाषाएँ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.3", "name": "__MSG_name__", "description": "__MSG_app_description__", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "main.js" ], "css": [ "style.css" ], "run_at": "document_end", "all_frames": true } ], "icons": { "16": "icons\/16_disabled.png", "48": "icons\/48_disabled.png", "128": "icons\/128_disabled.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "default_locale": "en", "homepage_url": "https:\/\/github.com\/sveagruva\/remove_youtube_tv_button", "browser_action": { "default_icon": { "16": "icons\/16_disabled.png", "48": "icons\/48_disabled.png", "128": "icons\/128_disabled.png" } } } |