SoundEnhace
Enhances the UI of SoundCloud with a popularity statistic
SoundEnhace क्या है?
SoundEnhace Michael Genovese द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enhances the UI of SoundCloud with a popularity statistic"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SoundEnhace एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } |