SoundEnhace

Enhances the UI of SoundCloud with a popularity statistic

什么是SoundEnhace?

SoundEnhace是由Michael Genovese开发的Chrome扩展程序,该扩展的主要功能是“Enhances the UI of SoundCloud with a popularity statistic”。

扩展截图

screenshot
screenshot

下载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                    

扩展基本信息

名称 SoundEnhace SoundEnhace
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
}