YouTube Musical Spectrum
Audio visualizer for YouTube and YT Music with musical notes.
YouTube Musical Spectrum란 무엇입니까?
YouTube Musical Spectrum은(는) mfcc64에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Audio visualizer for YouTube and YT Music with musical notes."입니다.
확장 프로그램 스크린샷
YouTube Musical Spectrum 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
YouTube Musical Spectrum is an extension that offers audio visualization on your YouTube and YT Music page with nice musical notes. It allows you to see waterfall of spectrogram nicely. You can see not only spectrogram of YouTube video but also spectrogram of your microphone. You need to reload your YouTube page after the installation. Available shortcuts: - Ctrl+Alt+H: toggle the menu's visibility - Ctrl+Alt+G: toggle the visualizer's visibility.
확장 프로그램 기본 정보
이름 | YouTube Musical Spectrum |
ID | ddpceafiohdlkiemibjgplcicblnfggi |
공식 URL | https://chromewebstore.google.com/detail/youtube-musical-spectrum/ddpceafiohdlkiemibjgplcicblnfggi |
설명 | Audio visualizer for YouTube and YT Music with musical notes. |
파일 크기 | 73.94 KB |
설치 횟수 | 1,482 |
현재 버전 | 9.0.0 |
최근 업데이트 | 2024-02-23 |
출시 날짜 | 2020-06-28 |
평점 | 4.80/5 총 20 개의 평점 |
개발자 | mfcc64 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mfcc64/youtube-musical-spectrum |
도움말 페이지 URL | https://github.com/mfcc64/youtube-musical-spectrum/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Musical Spectrum", "short_name": "YTMS", "description": "Audio visualizer for YouTube and YT Music with musical notes.", "version": "9.0.0", "icons": { "128": "modules\/@mfcc64\/[email protected]\/icon-128.png", "64": "modules\/@mfcc64\/[email protected]\/icon-64.png", "48": "modules\/@mfcc64\/[email protected]\/icon-48.png", "32": "modules\/@mfcc64\/[email protected]\/icon-32.png", "24": "modules\/@mfcc64\/[email protected]\/icon-24.png", "16": "modules\/@mfcc64\/[email protected]\/icon-16.png" }, "action": [], "browser_specific_settings": { "gecko": { "id": "{1e41b6c3-1ae3-41eb-89fc-f5c5eb5c1301}" }, "gecko_android": [] }, "web_accessible_resources": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/music.youtube.com\/*" ], "resources": [ "*.png", "\/modules\/*.mjs", "\/modules\/*.wasm" ] } ], "content_scripts": [ { "run_at": "document_end", "js": [ "wrapper.js" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/music.youtube.com\/*" ] } ], "content_security_policy": { "extension_pages": "default-src 'none'; script-src 'self'; style-src 'self'; img-src 'self';" } } |