SoundEnhace
Enhances the UI of SoundCloud with a popularity statistic
Cos'è SoundEnhace?
SoundEnhace è un'estensione di Chrome sviluppata da Michael Genovese, e la sua funzione principale è "Enhances the UI of SoundCloud with a popularity statistic".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SoundEnhace
Scarica i file di estensione SoundEnhace in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ghhjpnmejhccfeknjbcjcnkogappmlno |
URL Ufficiale | https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno |
Descrizione | Enhances the UI of SoundCloud with a popularity statistic |
Dimensione del File | 90.31 KB |
Conteggio Installazioni | 120 |
Versione Corrente | 1.2.2 |
Ultimo Aggiornamento | 2016-01-16 |
Data di Pubblicazione | 2016-01-16 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Michael Genovese |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://michaelrgenovese.com |
Lingue Supportate | 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 } |