Audio Only Youtube
Enables you to disable video streams on youtube and listen audio
Audio Only Youtube क्या है?
Audio Only Youtube https://ashishbansal.in द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables you to disable video streams on youtube and listen audio"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Audio Only Youtube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
"Audio only youtube" chrome extension enables you to disable only video on youtube which saves internet usage more than 50% when you want to listen songs on youtube. Note: It doesn't support Youtube Live Videos. You can enable/disable it by just clicking on the icon shown in the extension bar. Audio only youtube is an open-source project licensed under GPLv3. You can find sources here : https://github.com/Ashish-Bansal/audio-only-youtube Any kind of contributions to the project are welcomed and thanks to all who contributed to this project!
एक्सटेंशन की मूल जानकारी
नाम | Audio Only Youtube |
ID | pkocpiliahoaohbolmkelakpiphnllog |
आधिकारिक URL | https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog |
विवरण | Enables you to disable video streams on youtube and listen audio |
फ़ाइल का आकार | 29.61 KB |
स्थापना संख्या | 106,265 |
वर्तमान संस्करण | 0.10.0 |
अंतिम अपडेट | 2023-06-25 |
प्रकाशन तिथि | 2020-05-28 |
रेटिंग | 4.18/5 कुल 627 रेटिंग्स |
डेवलपर | https://ashishbansal.in |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Audio Only Youtube", "version": "0.10.0", "manifest_version": 3, "description": "Enables you to disable video streams on youtube and listen audio", "offline_enabled": true, "icons": { "19": "img\/icon19.png", "38": "img\/icon38.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "service_worker": "js\/background.js", "type": "module" }, "permissions": [ "tabs", "webRequest", "storage" ], "host_permissions": [ "*:\/\/www.youtube.com\/*", "*:\/\/music.youtube.com\/*", "*:\/\/*.googlevideo.com\/*" ], "action": { "default_title": "Audio Only Youtube" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*", "*:\/\/music.youtube.com\/*" ], "js": [ "js\/content-script.js" ], "css": [ "css\/content-script.css" ], "run_at": "document_start", "all_frames": true } ], "options_page": "html\/options.html" } |