Audio Visualizer

An audio visualizer for online music streaming.

Audio Visualizer란 무엇입니까?

Audio Visualizer은(는) https://douile.github.io/Chrome-Audio-Visualizer/Home에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An audio visualizer for online music streaming."입니다.

확장 프로그램 스크린샷

screenshot

Audio Visualizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        An extension to improve music experience by adding visual effects to audio streaming websites in the browser. This extension draws a bar and line visualization of the audio currently playing in a tab, in the same tab.

Supported websites:
> All (Accessible to extension, i.e. not local files or other extension pages)

Current Visualizations: 
> Classic Bars (auto-resizes to frequency scale of audio)
> Line 

Permission breakdown:
• Read and change all your data on the websites that you visit
This extension must have access to your website's data in order to read the audio stream and create a visualization.                    

확장 프로그램 기본 정보

이름 Audio Visualizer Audio Visualizer
ID caajjjkijcgmagpdjgadkodpgnmajcej
공식 URL https://chrome.google.com/webstore/detail/audio-visualizer/caajjjkijcgmagpdjgadkodpgnmajcej
설명 An audio visualizer for online music streaming.
파일 크기 38.34 KB
설치 횟수 3,596
현재 버전 1.26
최근 업데이트 2020-03-26
출시 날짜 2020-03-23
평점 2.56/5 총 18 개의 평점
개발자 https://douile.github.io/Chrome-Audio-Visualizer/Home
결제 유형 free
확장 프로그램 웹 사이트 https://douile.github.io/Chrome-Audio-Visualizer/Home/
도움말 페이지 URL https://discord.gg/N2TjhSA
개인정보 보호 정책 페이지 URL https://github.com/Douile/Chrome-Audio-Visualizer/blob/master/PRIVACY.md
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_ext_name__",
    "version": "1.26",
    "description": "__MSG_ext_desc__",
    "default_locale": "en",
    "author": "Douile",
    "offline_enabled": true,
    "icons": {
        "16": "\/img\/iconon16.png",
        "48": "\/img\/iconon48.png",
        "128": "\/img\/iconon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "tabCapture",
        "activeTab",
        "contextMenus",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/js\/storage.js",
                "\/js\/visualizationsdata.js",
                "\/js\/inject.js"
            ],
            "css": [
                "\/css\/inject.css"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": {
            "128": "\/img\/iconoff128.png"
        }
    },
    "background": {
        "scripts": [
            "\/js\/audioCapture.js",
            "\/js\/background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "web_accessible_resources": [
        "\/img\/settings.svg"
    ],
    "homepage_url": "https:\/\/github.com\/Douile\/Chrome-Audio-Visualizer"
}