gMusic
Control Google Play Music with a browser extension.
gMusic란 무엇입니까?
gMusic은(는) annoyingmouse에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control Google Play Music with a browser extension."입니다.
확장 프로그램 스크린샷
gMusic 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
I love music, I really do. I also love coding and the two together are a little like Strawberries and Cream, Chocolate and Cherries, Cheese and Pineapple, Rhubarb and Custard or Marmite and Cheese (Hey, before you start: some people who hate Marmite like Marmite and Cheese on toast... or Marmite, Peanut Butter, Coleslaw and Cheese on toast (YUM)). Sometimes other things get in the way though and I'll need to drag myself away from the coding and music fairies to talk to someone, go to a meeting or attend a scrum... in the meantime I've got more tabs open than God and I can't find the Google Music tab for love nor money. What I needed was a simple button that just pauses and plays Google Music - so I made one! I thought that others might want the same thing - here you go. UPDATE - fixed an issue with chrome.browserAction.enable()
확장 프로그램 기본 정보
이름 | |
ID | aiceljnooekdohpfkopeaojkkgebolli |
공식 URL | https://chrome.google.com/webstore/detail/gmusic/aiceljnooekdohpfkopeaojkkgebolli |
설명 | Control Google Play Music with a browser extension. |
파일 크기 | 2.36 MB |
설치 횟수 | 431 |
현재 버전 | 0.0.0.9 |
최근 업데이트 | 2014-09-26 |
출시 날짜 | 2014-09-26 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | annoyingmouse |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/annoyingmouse/gMusic |
개인정보 보호 정책 페이지 URL | https://github.com/annoyingmouse/gMusic/blob/master/privacy.md |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gMusic", "version": "0.0.0.9", "manifest_version": 2, "description": "Control Google Play 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:\/\/play.google.com\/music\/listen*" ], "content_scripts": [ { "matches": [ "https:\/\/play.google.com\/music\/listen*" ], "js": [ "js\/injected.js" ] } ], "browser_action": { "default_icon": "icons\/disabled.png" } } |