VK Music Animator

Visualization of the music being played on vk.com(vkontakte). Select effect and make listening to music more fun!

VK Music Animator란 무엇입니까?

VK Music Animator은(는) Brainmaker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Visualization of the music being played on vk.com(vkontakte). Select effect and make listening to music more fun!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

VK Music Animator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension adds a graphical visualizer to the audio player on site vkontakte (vk.com). 
Use different themes and visual effects and make listening to music more fun! 
New visual effects are coming soon!                    

확장 프로그램 기본 정보

이름 VK Music Animator VK Music Animator
ID kningkodbgfoppmglhnbfllamkopmllc
공식 URL https://chromewebstore.google.com/detail/vk-music-animator/kningkodbgfoppmglhnbfllamkopmllc
설명 Visualization of the music being played on vk.com(vkontakte). Select effect and make listening to music more fun!
파일 크기 21.84 KB
설치 횟수 41
현재 버전 1.0.0
최근 업데이트 2022-05-07
출시 날짜 2022-05-07
개발자 Brainmaker
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://docs.google.com/document/d/1358mdPy5sHWpi-nRCqLnCa3mxB0GN40wF47XrXwLPmA/edit?usp=sharing
지원되는 언어 en,en-GB,en-US,es,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "32": ".\/icons\/vk-audio-32.png",
        "64": ".\/icons\/vk-audio-64.png",
        "128": ".\/icons\/vk-audio-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/vk.com\/*"
            ],
            "run_at": "document_start",
            "all_frames": false,
            "js": [
                "vk-content-script.js"
            ],
            "css": [
                "vk.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "optional_permissions": [],
    "host_permissions": [
        "*:\/\/vk.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "page.js",
                "vk.css"
            ],
            "matches": [
                "*:\/\/vk.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}