Fresh
Play the most recent track by a specified user
什么是Fresh?
Fresh是由mp开发的Chrome扩展程序,该扩展的主要功能是“Play the most recent track by a specified user”。
扩展截图
下载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 |
ID | khgnmjipmgmchnpaplopbndofhlffdcl |
官方URL | 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" } |