Bandcamp Volume
Adds a volume slider to most pages on bandcamp.com
Bandcamp Volume란 무엇입니까?
Bandcamp Volume은(는) Zak "Ubercow" Kristjanson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a volume slider to most pages on bandcamp.com"입니다.
확장 프로그램 스크린샷
Bandcamp Volume 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The BIG Version 2.0 update! Features include: - Syncing of your volume between pages on a single computer (turn this off in Options) - A new logo - New slider layout with Mute functionality - Slider now works on some homescreen players Thank you to github.com/roguedarkjedi and https://github.com/josh-bridge for their contributions! Bandcamp, by default, does not have a volume control on it's player. This extension adds a volume slider to Bandcamp Album pages. You can check out the source code for this extension on github via the website link. This extension is still considered beta and may have issues, if you find one, you can submit a bug report via the Support & FAQ link.
확장 프로그램 기본 정보
이름 | Bandcamp Volume |
ID | nlikaonifbagdlcjoepofomefchkahab |
공식 URL | https://chromewebstore.google.com/detail/bandcamp-volume/nlikaonifbagdlcjoepofomefchkahab |
설명 | Adds a volume slider to most pages on bandcamp.com |
파일 크기 | 37.69 KB |
설치 횟수 | 20,000 |
현재 버전 | 2.0 |
최근 업데이트 | 2015-10-11 |
출시 날짜 | 2015-10-10 |
평점 | 4.57/5 총 241 개의 평점 |
개발자 | Zak "Ubercow" Kristjanson |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ubercow/bandcamp_volume |
도움말 페이지 URL | https://github.com/ubercow/bandcamp_volume/issues?state=open |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bandcamp Volume", "manifest_version": 2, "version": "2.0", "description": "Adds a volume slider to most pages on bandcamp.com", "permissions": [ "storage" ], "options_ui": { "page": "options\/options.html", "chrome_style": true }, "icons": { "32": "images\/logos\/logo_32.png", "64": "images\/logos\/logo_64.png", "128": "images\/logos\/logo_128.png" }, "web_accessible_resources": [ "fonts\/*.*", "images\/icons\/*.png" ], "content_scripts": [ { "matches": [ "*:\/\/*.bandcamp.com\/*" ], "css": [ "css\/style.css" ], "js": [ "scripts\/volume.js" ] } ] } |