YouTube Musical Spectrum

Audio visualizer for YouTube and YT Music with musical notes.

YouTube Musical Spectrumคืออะไร?

YouTube Musical Spectrum เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mfcc64 และคุณลักษณะหลักของมันคือ "Audio visualizer for YouTube and YT Music with musical notes."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Musical Spectrum

ดาวน์โหลดไฟล์ส่วนขยาย YouTube Musical Spectrum ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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';"
    }
}