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文件

下載VK Music Animator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}