y_Music
Control YouTube Music with a browser extension.
y_Music란 무엇입니까?
y_Music은(는) annoyingmouse에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control YouTube Music with a browser extension."입니다.
확장 프로그램 스크린샷
y_Music 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |