SoundEnhace

Enhances the UI of SoundCloud with a popularity statistic

SoundEnhace là gì?

SoundEnhace là một tiện ích mở rộng Chrome được phát triển bởi Michael Genovese, và tính năng chính của nó là "Enhances the UI of SoundCloud with a popularity statistic".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng SoundEnhace

Tải xuống các tệp mở rộng SoundEnhace dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SoundEnhace SoundEnhace
ID ghhjpnmejhccfeknjbcjcnkogappmlno
URL Chính Thức https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno
Mô tả Enhances the UI of SoundCloud with a popularity statistic
Kích Thước Tệp 90.31 KB
Số Lần Cài Đặt 120
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2016-01-16
Ngày Phát Hành 2016-01-16
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Michael Genovese
Loại Thanh Toán free
Trang Web Mở Rộng http://michaelrgenovese.com
Ngôn Ngữ Được Hỗ Trợ 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
}