Fresh

Play the most recent track by a specified user

Co je Fresh?

Fresh je rozšíření Chrome vyvinuté mp, a jeho hlavní funkcí je „Play the most recent track by a specified user“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Fresh

Stáhněte si soubory rozšíření Fresh ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Fresh Fresh
ID khgnmjipmgmchnpaplopbndofhlffdcl
Oficiální URL https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl
Popis Play the most recent track by a specified user
Velikost souboru 512 KB
Počet instalací 84
Aktuální Verze 2.2
Poslední Aktualizace 2017-02-08
Datum Vydání 2017-02-08
Vývojář mp
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://brostack.com
Podporované Jazyky 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"
}