Fresh

Play the most recent track by a specified user

O que é Fresh?

Fresh é uma extensão do Chrome desenvolvida por mp, e sua principal característica é "Play the most recent track by a specified user".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Fresh

Baixe arquivos de extensão Fresh 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

                        This extension open a new tab with the most recent Soundcloud track of a specified username and plays it automatically. 

For this to work you must set the user url in the options page. 

For instance you must write madpr0ps if your tracks url is https://soundcloud.com/madpr0ps/tracks

It also has context menu items to play the user's liked tracks or the main Soundcloud stream.                    

Informações Básicas da Extensão

Nome Fresh Fresh
ID khgnmjipmgmchnpaplopbndofhlffdcl
URL Oficial https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl
Descrição Play the most recent track by a specified user
Tamanho do Arquivo 512 KB
Contagem de Instalações 84
Versão Atual 2.2
Última Atualização 2017-02-08
Data de Publicação 2017-02-08
Desenvolvedor mp
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://brostack.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fresh",
    "description": "Play the most recent track by a specified user",
    "version": "2.2",
    "permissions": [
        "storage",
        "contextMenus",
        "https:\/\/soundcloud.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "128": "icon128.png"
        },
        "default_title": "Play most recent track"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/soundcloud.com\/*"
            ],
            "js": [
                "jquery.js",
                "initialize.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon128.png"
    },
    "commands": {
        "play": {
            "suggested_key": {
                "default": "Ctrl+Comma",
                "mac": "Command+Comma"
            },
            "description": "Go to playing tab"
        }
    },
    "options_page": "options.html"
}