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
官方網址 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
}