SoundEnhace

Enhances the UI of SoundCloud with a popularity statistic

O que é SoundEnhace?

SoundEnhace é uma extensão do Chrome desenvolvida por Michael Genovese, e sua principal característica é "Enhances the UI of SoundCloud with a popularity statistic".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SoundEnhace

Baixe arquivos de extensão SoundEnhace no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome SoundEnhace SoundEnhace
ID ghhjpnmejhccfeknjbcjcnkogappmlno
URL Oficial https://chrome.google.com/webstore/detail/soundenhace/ghhjpnmejhccfeknjbcjcnkogappmlno
Descrição Enhances the UI of SoundCloud with a popularity statistic
Tamanho do Arquivo 90.31 KB
Contagem de Instalações 120
Versão Atual 1.2.2
Última Atualização 2016-01-16
Data de Publicação 2016-01-16
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Michael Genovese
Tipo de Pagamento free
Site da Extensão http://michaelrgenovese.com
Idiomas Suportados 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
}