VK Music Animator

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

Was ist VK Music Animator?

VK Music Animator ist eine Chrome-Erweiterung, die von Brainmaker entwickelt wurde, und ihr Hauptmerkmal ist "Visualization of the music being played on vk.com(vkontakte). Select effect and make listening to music more fun!".

Erweiterungsscreenshots

screenshot
screenshot

VK Music Animator-Erweiterungs-CRX-Datei herunterladen

Laden Sie VK Music Animator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name VK Music Animator VK Music Animator
ID kningkodbgfoppmglhnbfllamkopmllc
Offizielle URL https://chromewebstore.google.com/detail/vk-music-animator/kningkodbgfoppmglhnbfllamkopmllc
Beschreibung Visualization of the music being played on vk.com(vkontakte). Select effect and make listening to music more fun!
Dateigröße 21.84 KB
Installationsanzahl 41
Aktuelle Version 1.0.0
Letztes Update 2022-05-07
Veröffentlichungsdatum 2022-05-07
Entwickler Brainmaker
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://docs.google.com/document/d/1358mdPy5sHWpi-nRCqLnCa3mxB0GN40wF47XrXwLPmA/edit?usp=sharing
Unterstützte Sprachen 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"
    }
}