SoundEnhace
Enhances the UI of SoundCloud with a popularity statistic
Co je SoundEnhace?
SoundEnhace je rozšíření Chrome vyvinuté Michael Genovese, a jeho hlavní funkcí je „Enhances the UI of SoundCloud with a popularity statistic“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření SoundEnhace
Stáhněte si soubory rozšíření SoundEnhace ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | ghhjpnmejhccfeknjbcjcnkogappmlno |
Oficiální URL | https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno |
Popis | Enhances the UI of SoundCloud with a popularity statistic |
Velikost souboru | 90.31 KB |
Počet instalací | 120 |
Aktuální Verze | 1.2.2 |
Poslední Aktualizace | 2016-01-16 |
Datum Vydání | 2016-01-16 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Michael Genovese |
Typ Platby | free |
Webové stránky Rozšíření | http://michaelrgenovese.com |
Podporované Jazyky | 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 } |