SoundEnhace

Enhances the UI of SoundCloud with a popularity statistic

Wat is SoundEnhace?

SoundEnhace is een Chrome-extensie ontwikkeld door Michael Genovese, en de belangrijkste functie is "Enhances the UI of SoundCloud with a popularity statistic".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie SoundEnhace

Download SoundEnhace-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam SoundEnhace SoundEnhace
ID ghhjpnmejhccfeknjbcjcnkogappmlno
Officiële URL https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno
Beschrijving Enhances the UI of SoundCloud with a popularity statistic
Bestandsgrootte 90.31 KB
Aantal Installaties 120
Huidige Versie 1.2.2
Laatst Bijgewerkt 2016-01-16
Publicatiedatum 2016-01-16
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Michael Genovese
Betalingswijze free
Extensiewebsite http://michaelrgenovese.com
Ondersteunde Talen 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
}