SoundEnhace
Enhances the UI of SoundCloud with a popularity statistic
What is SoundEnhace?
SoundEnhace is a Chrome extension developed by Michael Genovese, and its main feature is "Enhances the UI of SoundCloud with a popularity statistic".
Extension Screenshots
Download SoundEnhace Extension CRX File
Download SoundEnhace extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | ghhjpnmejhccfeknjbcjcnkogappmlno |
Official URL | https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno |
Description | Enhances the UI of SoundCloud with a popularity statistic |
File Size | 90.31 KB |
Installation Count | 120 |
Current Version | 1.2.2 |
Last Updated | 2016-01-16 |
Publish Date | 2016-01-16 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Michael Genovese |
Payment Type | free |
Extension Website | http://michaelrgenovese.com |
Supported Languages | 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 } |