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 là gì?

VK Music Animator là một tiện ích mở rộng Chrome được phát triển bởi Brainmaker, và tính năng chính của nó là "Visualization of the music being played on vk.com(vkontakte). Select effect and make listening to music more fun!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng VK Music Animator

Tải xuống các tệp mở rộng VK Music Animator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên VK Music Animator VK Music Animator
ID kningkodbgfoppmglhnbfllamkopmllc
URL Chính Thức https://chromewebstore.google.com/detail/vk-music-animator/kningkodbgfoppmglhnbfllamkopmllc
Mô tả Visualization of the music being played on vk.com(vkontakte). Select effect and make listening to music more fun!
Kích Thước Tệp 21.84 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-05-07
Ngày Phát Hành 2022-05-07
Nhà Phát Triển Brainmaker
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://docs.google.com/document/d/1358mdPy5sHWpi-nRCqLnCa3mxB0GN40wF47XrXwLPmA/edit?usp=sharing
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}