SoundEnhace

Enhances the UI of SoundCloud with a popularity statistic

Was ist SoundEnhace?

SoundEnhace ist eine Chrome-Erweiterung, die von Michael Genovese entwickelt wurde, und ihr Hauptmerkmal ist "Enhances the UI of SoundCloud with a popularity statistic".

Erweiterungsscreenshots

screenshot
screenshot

SoundEnhace-Erweiterungs-CRX-Datei herunterladen

Laden Sie SoundEnhace-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name SoundEnhace SoundEnhace
ID ghhjpnmejhccfeknjbcjcnkogappmlno
Offizielle URL https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno
Beschreibung Enhances the UI of SoundCloud with a popularity statistic
Dateigröße 90.31 KB
Installationsanzahl 120
Aktuelle Version 1.2.2
Letztes Update 2016-01-16
Veröffentlichungsdatum 2016-01-16
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Michael Genovese
Zahlungsart free
Erweiterungswebsite http://michaelrgenovese.com
Unterstützte Sprachen 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
}