Fresh

Play the most recent track by a specified user

什麼是Fresh?

Fresh是由mp開發的Chrome擴展程式,該擴展的主要功能是“Play the most recent track by a specified user”。

擴展截圖

screenshot

下載Fresh擴展crx文件

下載Fresh擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Fresh Fresh
ID khgnmjipmgmchnpaplopbndofhlffdcl
官方網址 https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl
簡介 Play the most recent track by a specified user
檔案大小 512 KB
安裝次數 84
目前版本 2.2
更新時間 2017-02-08
上架時間 2017-02-08
開發者 mp
電子郵箱 [email protected]
付費類型 free
擴展官網 http://brostack.com
支援的語言 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"
}