Fresh
Play the most recent track by a specified user
Τι είναι το Fresh;
Το Fresh είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mp, και η κύρια λειτουργία του είναι "Play the most recent track by a specified user".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Fresh
Λήψη αρχείων επέκτασης 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" } |