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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brainmaker และคุณลักษณะหลักของมันคือ "Visualization of the music being played on vk.com(vkontakte). Select effect and make listening to music more fun!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VK Music Animator
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" } } |