Fresh
Play the most recent track by a specified user
Qu'est-ce que Fresh ?
Fresh est une extension Chrome développée par mp, et sa fonction principale est "Play the most recent track by a specified user".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Fresh
Téléchargez les fichiers d'extension Fresh au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Fresh |
ID | khgnmjipmgmchnpaplopbndofhlffdcl |
URL Officiel | https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl |
Description | Play the most recent track by a specified user |
Taille du Fichier | 512 KB |
Nombre d'Installations | 84 |
Version Actuelle | 2.2 |
Dernière Mise à Jour | 2017-02-08 |
Date de Publication | 2017-02-08 |
Développeur | mp |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://brostack.com |
Langues Prises en Charge | 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" } |