Fresh
Play the most recent track by a specified user
Was ist Fresh?
Fresh ist eine Chrome-Erweiterung, die von mp entwickelt wurde, und ihr Hauptmerkmal ist "Play the most recent track by a specified user".
Erweiterungsscreenshots
Fresh-Erweiterungs-CRX-Datei herunterladen
Laden Sie Fresh-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Fresh |
ID | khgnmjipmgmchnpaplopbndofhlffdcl |
Offizielle URL | https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl |
Beschreibung | Play the most recent track by a specified user |
Dateigröße | 512 KB |
Installationsanzahl | 84 |
Aktuelle Version | 2.2 |
Letztes Update | 2017-02-08 |
Veröffentlichungsdatum | 2017-02-08 |
Entwickler | mp |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://brostack.com |
Unterstützte Sprachen | 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" } |