Fresh
Play the most recent track by a specified user
What is Fresh?
Fresh is a Chrome extension developed by mp, and its main feature is "Play the most recent track by a specified user".
Extension Screenshots
Download Fresh Extension CRX File
Download Fresh extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Fresh |
ID | khgnmjipmgmchnpaplopbndofhlffdcl |
Official URL | https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl |
Description | Play the most recent track by a specified user |
File Size | 512 KB |
Installation Count | 84 |
Current Version | 2.2 |
Last Updated | 2017-02-08 |
Publish Date | 2017-02-08 |
Developer | mp |
[email protected] | |
Payment Type | free |
Extension Website | http://brostack.com |
Supported Languages | 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" } |