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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Visualization of the music being played on vk.com(vkontakte). Select effect and make listening to music more fun!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में VK Music Animator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |