Fresh
Play the most recent track by a specified user
Wat is Fresh?
Fresh is een Chrome-extensie ontwikkeld door mp, en de belangrijkste functie is "Play the most recent track by a specified user".
Extensie Screenshots
Download het CRX-bestand van de extensie Fresh
Download Fresh-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Fresh |
ID | khgnmjipmgmchnpaplopbndofhlffdcl |
Officiële URL | https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl |
Beschrijving | Play the most recent track by a specified user |
Bestandsgrootte | 512 KB |
Aantal Installaties | 84 |
Huidige Versie | 2.2 |
Laatst Bijgewerkt | 2017-02-08 |
Publicatiedatum | 2017-02-08 |
Ontwikkelaar | mp |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://brostack.com |
Ondersteunde Talen | 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" } |