SoundEnhace
Enhances the UI of SoundCloud with a popularity statistic
SoundEnhaceとは何ですか?
SoundEnhaceはMichael Genoveseによって開発されたChromeの拡張機能で、その主な機能は「Enhances the UI of SoundCloud with a popularity statistic」です。
拡張機能のスクリーンショット
SoundEnhace拡張機能のCRXファイルをダウンロード
SoundEnhace拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 } |