Audio Visualizer
An audio visualizer for online music streaming.
ما هو Audio Visualizer؟
Audio Visualizer هو إضافة Chrome تم تطويرها بواسطة https://douile.github.io/Chrome-Audio-Visualizer/Home، والميزة الرئيسية لها هي "An audio visualizer for online music streaming.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Audio Visualizer
قم بتنزيل ملفات الامتداد Audio Visualizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
An extension to improve music experience by adding visual effects to audio streaming websites in the browser. This extension draws a bar and line visualization of the audio currently playing in a tab, in the same tab. Supported websites: > All (Accessible to extension, i.e. not local files or other extension pages) Current Visualizations: > Classic Bars (auto-resizes to frequency scale of audio) > Line Permission breakdown: • Read and change all your data on the websites that you visit This extension must have access to your website's data in order to read the audio stream and create a visualization.
معلومات أساسية عن التمديد
الاسم | |
ID | caajjjkijcgmagpdjgadkodpgnmajcej |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/audio-visualizer/caajjjkijcgmagpdjgadkodpgnmajcej |
الوصف | An audio visualizer for online music streaming. |
حجم الملف | 38.34 KB |
عدد التثبيتات | 3,596 |
النسخة الحالية | 1.26 |
آخر تحديث | 2020-03-26 |
تاريخ النشر | 2020-03-23 |
تقييم | 2.56/5 مجموع تقييمات 18 |
المطور | https://douile.github.io/Chrome-Audio-Visualizer/Home |
نوع الدفع | free |
موقع الإضافة | https://douile.github.io/Chrome-Audio-Visualizer/Home/ |
عنوان صفحة المساعدة | https://discord.gg/N2TjhSA |
عنوان صفحة سياسة الخصوصية | https://github.com/Douile/Chrome-Audio-Visualizer/blob/master/PRIVACY.md |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_ext_name__", "version": "1.26", "description": "__MSG_ext_desc__", "default_locale": "en", "author": "Douile", "offline_enabled": true, "icons": { "16": "\/img\/iconon16.png", "48": "\/img\/iconon48.png", "128": "\/img\/iconon128.png" }, "permissions": [ "storage", "tabs", "tabCapture", "activeTab", "contextMenus", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "\/js\/storage.js", "\/js\/visualizationsdata.js", "\/js\/inject.js" ], "css": [ "\/css\/inject.css" ], "run_at": "document_end" } ], "browser_action": { "default_icon": { "128": "\/img\/iconoff128.png" } }, "background": { "scripts": [ "\/js\/audioCapture.js", "\/js\/background.js" ], "persistent": true }, "options_ui": { "chrome_style": true, "page": "options.html" }, "web_accessible_resources": [ "\/img\/settings.svg" ], "homepage_url": "https:\/\/github.com\/Douile\/Chrome-Audio-Visualizer" } |