y_Music
Control YouTube Music with a browser extension.
y_Music क्या है?
y_Music annoyingmouse द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control YouTube Music with a browser extension."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में y_Music एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is a simple Chrome extension which allows you to pause and resume music playing via YouTube music. Based upon a similar one created for Google Play Music, I've taken the opportunity to update the JS, and the images used more closely match the colour-scheme used by YouTube Music.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | fcdclkoggpmcdchgijpgcmkacbmlkmhk |
आधिकारिक URL | https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk |
विवरण | Control YouTube Music with a browser extension. |
फ़ाइल का आकार | 46.82 KB |
स्थापना संख्या | 84 |
वर्तमान संस्करण | 0.0.0.8 |
अंतिम अपडेट | 2020-07-05 |
प्रकाशन तिथि | 2020-07-05 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | annoyingmouse |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/annoyingmouse/gMusic |
सहायता पृष्ठ URL | https://github.com/annoyingmouse/gMusic/issues |
गोपनीयता नीति पृष्ठ URL | https://github.com/annoyingmouse/gMusic/blob/master/privacy.md |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "y_Music", "version": "0.0.0.8", "manifest_version": 2, "description": "Control YouTube Music with a browser extension.", "homepage_url": "https:\/\/github.com\/annoyingmouse\/gMusic", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "js\/controller.js" ], "persistent": true }, "permissions": [ "tabs", "https:\/\/music.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/music.youtube.com\/*" ], "js": [ "js\/injected.js" ] } ], "browser_action": { "default_icon": "icons\/disabled.png" } } |