SoundEnhace
Enhances the UI of SoundCloud with a popularity statistic
ما هو SoundEnhace؟
SoundEnhace هو إضافة Chrome تم تطويرها بواسطة Michael Genovese، والميزة الرئيسية لها هي "Enhances the UI of SoundCloud with a popularity statistic".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة SoundEnhace
قم بتنزيل ملفات الامتداد SoundEnhace بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Enhance the user interface of SoundCloud with an additional sound statistic. Using data about each sound, such as plays, likes, reposts, and comments, a popularity statistic is calculated and added to the interface. With the popularity statistic, you can quickly scan your stream to identify the winners. Update 1.2.2: -Bug Fixes
معلومات أساسية عن التمديد
الاسم | |
ID | ghhjpnmejhccfeknjbcjcnkogappmlno |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno |
الوصف | Enhances the UI of SoundCloud with a popularity statistic |
حجم الملف | 90.31 KB |
عدد التثبيتات | 120 |
النسخة الحالية | 1.2.2 |
آخر تحديث | 2016-01-16 |
تاريخ النشر | 2016-01-16 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Michael Genovese |
نوع الدفع | free |
موقع الإضافة | http://michaelrgenovese.com |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SoundEnhace", "version": "1.2.2", "description": "Enhances the UI of SoundCloud with a popularity statistic", "content_scripts": [ { "matches": [ "http:\/\/soundcloud.com\/*", "https:\/\/soundcloud.com\/*" ], "js": [ "mutation_summary.js", "enhance_content_script.js" ], "css": [ "enhance.css" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "declarativeContent", "webNavigation", "http:\/\/soundcloud.com\/*", "https:\/\/soundcloud.com\/*" ], "page_action": { "default_name": "SoundEnhace", "default_icon": "icon-19.png" }, "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "web_accessible_resources": [ "*.png" ], "manifest_version": 2 } |