y_Music
Control YouTube Music with a browser extension.
Vad är y_Music?
y_Music är en Chrome-tillägg utvecklad av annoyingmouse, och dess huvudfunktion är "Control YouTube Music with a browser extension.".
Tilläggsskärmbilder
Ladda ner y_Music-förlängningens CRX-fil
Ladda ner y_Music-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | fcdclkoggpmcdchgijpgcmkacbmlkmhk |
Officiell webbadress | https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk |
Beskrivning | Control YouTube Music with a browser extension. |
Filstorlek | 46.82 KB |
Antal Installationer | 84 |
Aktuell Version | 0.0.0.8 |
Senast Uppdaterad | 2020-07-05 |
Publiceringsdatum | 2020-07-05 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | annoyingmouse |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/annoyingmouse/gMusic |
Hjälpsida URL | https://github.com/annoyingmouse/gMusic/issues |
URL till Sekretesspolicy Sidan | https://github.com/annoyingmouse/gMusic/blob/master/privacy.md |
Stödda Språk | 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" } } |