Fresh

Play the most recent track by a specified user

Hvad er Fresh?

Fresh er en Chrome-udvidelse udviklet af mp, og dens hovedfunktion er "Play the most recent track by a specified user".

Udvidelsesskærmbilleder

screenshot

Download Fresh-udvidelses-CRX-fil

Download Fresh-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Fresh Fresh
ID khgnmjipmgmchnpaplopbndofhlffdcl
Officiel URL https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl
Beskrivelse Play the most recent track by a specified user
Filstørrelse 512 KB
Antal Installationer 84
Nuværende Version 2.2
Senest Opdateret 2017-02-08
Udgivelsesdato 2017-02-08
Udvikler mp
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://brostack.com
Understøttede Sprog 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"
}