Music Beta Skip controller
The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new…
Music Beta Skip controller란 무엇입니까?
Music Beta Skip controller은(는) MAD에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new…"입니다.
확장 프로그램 스크린샷
Music Beta Skip controller 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new tab with the Music Beta Web App in it if none is already available. This Music Beta Skip controller can be used side by side with the Music Beta Play/Pause Browser Action available here: https://chrome.google.com/webstore/detail/lblkffdkmmemjagfanapkgkogilikbad. The code for these extensions is open source and available here: http://code.google.com/p/music-beta-controller/ You can see what was added to individual releases here: https://code.google.com/p/music-beta-controller/wiki/ReleaseNotes You can file bugs and feature requests here: http://code.google.com/p/music-beta-controller/issues/list You can use this other group to discuss usage of these extensions: http://groups.google.com/group/music-beta-controller-discuss And you can register to this one for communicating with other users of these extensions: http://groups.google.com/group/music-beta-controller-users
확장 프로그램 기본 정보
이름 | Music Beta Skip controller |
ID | lfpilffkipfhpoccjdiebpdjbdmfpefg |
공식 URL | https://chromewebstore.google.com/detail/music-beta-skip-controlle/lfpilffkipfhpoccjdiebpdjbdmfpefg |
설명 | The Music Beta Skip simply exposes a Browser action button that will skip the current track if one is available or will open a new… |
파일 크기 | 32.4 KB |
설치 횟수 | 112 |
현재 버전 | 1.0.5 |
최근 업데이트 | 2014-05-28 |
출시 날짜 | 2014-05-27 |
평점 | 4.62/5 총 26 개의 평점 |
개발자 | MAD |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html", "persistent": true }, "browser_action": { "default_icon": "logo-19x19.ico", "default_title": "Music Beta Skip controller", "name": "Skip" }, "content_scripts": [ { "js": [ "play_state_notifier.js" ], "matches": [ "*:\/\/play.google.com\/*" ], "run_at": "document_end" } ], "icons": { "128": "skip-128x128.png", "48": "skip-48x48.png", "16": "skip-16x16.png" }, "name": "Music Beta Skip controller", "permissions": [ "tabs", "*:\/\/play.google.com\/*" ], "version": "1.0.5" } |