SoundEnhace

Enhances the UI of SoundCloud with a popularity statistic

Qu'est-ce que SoundEnhace ?

SoundEnhace est une extension Chrome développée par Michael Genovese, et sa fonction principale est "Enhances the UI of SoundCloud with a popularity statistic".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension SoundEnhace

Téléchargez les fichiers d'extension SoundEnhace au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom SoundEnhace SoundEnhace
ID ghhjpnmejhccfeknjbcjcnkogappmlno
URL Officiel https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno
Description Enhances the UI of SoundCloud with a popularity statistic
Taille du Fichier 90.31 KB
Nombre d'Installations 120
Version Actuelle 1.2.2
Dernière Mise à Jour 2016-01-16
Date de Publication 2016-01-16
Évaluation 5.00/5 Total 2 Évaluations
Développeur Michael Genovese
Type de Paiement free
Site Web de l'Extension http://michaelrgenovese.com
Langues Prises en Charge 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
}