Fresh

Play the most recent track by a specified user

Cos'è Fresh?

Fresh è un'estensione di Chrome sviluppata da mp, e la sua funzione principale è "Play the most recent track by a specified user".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Fresh

Scarica i file di estensione Fresh in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Fresh Fresh
ID khgnmjipmgmchnpaplopbndofhlffdcl
URL Ufficiale https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl
Descrizione Play the most recent track by a specified user
Dimensione del File 512 KB
Conteggio Installazioni 84
Versione Corrente 2.2
Ultimo Aggiornamento 2017-02-08
Data di Pubblicazione 2017-02-08
Sviluppatore mp
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://brostack.com
Lingue Supportate 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"
}