Fresh

Play the most recent track by a specified user

¿Qué es Fresh?

Fresh es una extensión de Chrome desarrollada por mp, y su función principal es "Play the most recent track by a specified user".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Fresh

Descarga archivos de extensión Fresh en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Fresh Fresh
ID khgnmjipmgmchnpaplopbndofhlffdcl
URL Oficial https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl
Descripción Play the most recent track by a specified user
Tamaño del Archivo 512 KB
Cantidad de Instalaciones 84
Versión Actual 2.2
Última Actualización 2017-02-08
Fecha de Publicación 2017-02-08
Desarrollador mp
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://brostack.com
Idiomas Soportados 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"
}