Cadenza - Youtube Pitch Shifter
Pitch shift the audio on Youtube, designed for all music lovers, especially for jazz guitarists.
Cadenza - Youtube Pitch Shifter란 무엇입니까?
Cadenza - Youtube Pitch Shifter은(는) adrianhsu1995에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pitch shift the audio on Youtube, designed for all music lovers, especially for jazz guitarists."입니다.
확장 프로그램 스크린샷
Cadenza - Youtube Pitch Shifter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A chrome extension that shifts the pitch of HTML5 videos. Cadenza is just an embedded version of pitch shifter on youtube, based on "Pitch Shifter" by Foxdog Studios. You can download the original "Pitch Shifter" here: https://chrome.google.com/webstore/detail/pitch-shifter-html5-video/mpmkclglcbkjchakihfpblainfncennj
확장 프로그램 기본 정보
이름 | |
ID | fcneeeckalcgcklbloocjmhapagkkbfa |
공식 URL | https://chrome.google.com/webstore/detail/cadenza-youtube-pitch-shi/fcneeeckalcgcklbloocjmhapagkkbfa |
설명 | Pitch shift the audio on Youtube, designed for all music lovers, especially for jazz guitarists. |
파일 크기 | 20.55 KB |
설치 횟수 | 9,000 |
현재 버전 | 1.2 |
최근 업데이트 | 2018-04-10 |
출시 날짜 | 2018-04-10 |
평점 | 3.31/5 총 62 개의 평점 |
개발자 | adrianhsu1995 |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cadenza - Youtube Pitch Shifter", "short_name": "Cadenza", "version": "1.2", "description": "Pitch shift the audio on Youtube, designed for all music lovers, especially for jazz guitarists.", "author": "Adrian Hsu, Foxdog Studios", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "controls.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jungle.js", "content_script.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "controls.js", "controls.html" ] } |