TrackDen
Level-up your track hunting on Bandcamp. Stream and preview tracks, add and edit songs, create custom playlists and action them.
Τι είναι το TrackDen;
Το TrackDen είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://trackden.org, και η κύρια λειτουργία του είναι "Level-up your track hunting on Bandcamp. Stream and preview tracks, add and edit songs, create custom playlists and action them.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης TrackDen
Λήψη αρχείων επέκτασης TrackDen σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
TrackDen is a browser extension that helps you organize your Bandcamp music collection and automate many of the tasks involved in putting together playlists and purchasing tracks. * Sync your current collection, cart and wishlist. * Add individual songs and whole albums to your library. * Stream queues of Bandcamp tracks before purchasing. * Link songs to multiple playlists at once. * Preview songs in your playlists and create queues of tracks without navigating to individual pages. * Update track meta data such as price, BPM counts and more. * Perform actions such as adding to your wishlist or cart on multiple songs at once, directly from the extension. * Export and import playlists to and from files. * Create backups of your library. * Sync changes between devices Free to use, no signup required. TrackDen let's you store and manage your Bandcamp music collection offline and organise it into custom playlists before you commit to purchasing songs, so you don't have to lose those special tracks just because you haven't bought them ...yet. You're able to sync your wishlist, cart and collection and perform actions on multiple songs and whole playlists at once. Edit song details and prices, export and import lists of songs and create backups of your music collection. Level up your track hunting. trackden.org
Βασικές Πληροφορίες Επέκτασης
Όνομα | TrackDen |
ID | hnibfnjnbfdjgoogpoikiogjjigjcaia |
Επίσημο URL | https://chromewebstore.google.com/detail/trackden/hnibfnjnbfdjgoogpoikiogjjigjcaia |
Περιγραφή | Level-up your track hunting on Bandcamp. Stream and preview tracks, add and edit songs, create custom playlists and action them. |
Μέγεθος Αρχείου | 768 KB |
Αριθμός Εγκαταστάσεων | 206 |
Τρέχουσα Έκδοση | 0.0.1.3 |
Τελευταία Ενημέρωση | 2023-07-01 |
Ημερομηνία Δημοσίευσης | 2023-02-10 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | https://trackden.org |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://trackden.org/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://trackden.org/docs |
URL της Σελίδας Πολιτικής Απορρήτου | https://trackden.org/privacy-policy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TrackDen", "description": "Level-up your track hunting on Bandcamp. Stream and preview tracks, add and edit songs, create custom playlists and action them.", "version": "0.0.1.3", "manifest_version": 3, "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "html\/popup.html", "default_icon": { "16": "css\/img\/png\/icon-inactive-16.png", "32": "css\/img\/png\/icon-inactive-32.png", "48": "css\/img\/png\/icon-inactive-48.png", "128": "css\/img\/png\/icon-inactive-128.png" } }, "icons": { "16": "css\/img\/png\/icon-active-16.png", "32": "css\/img\/png\/icon-active-32.png", "48": "css\/img\/png\/icon-active-48.png", "128": "css\/img\/png\/icon-active-128.png" }, "permissions": [ "storage", "activeTab", "tabs", "unlimitedStorage", "declarativeContent" ], "host_permissions": [ "https:\/\/*.bandcamp.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.bandcamp.com\/track\/*" ], "run_at": "document_idle", "js": [ "js\/content-scripts\/bandcamp-track.js", "js\/content-scripts\/bandcamp-cart.js" ] }, { "matches": [ "https:\/\/bandcamp.com\/*\/wishlist" ], "run_at": "document_idle", "js": [ "js\/content-scripts\/bandcamp-wishlist.js" ] }, { "matches": [ "https:\/\/*.bandcamp.com\/album\/*" ], "run_at": "document_idle", "js": [ "js\/content-scripts\/bandcamp-album.js", "js\/content-scripts\/bandcamp-cart.js" ] }, { "matches": [ "https:\/\/bandcamp.com\/*" ], "run_at": "document_idle", "js": [ "js\/content-scripts\/bandcamp-purchases.js" ], "css": [ "css\/contentScriptCss.css" ] }, { "matches": [ "https:\/\/*.bandcamp.com\/download\/track\/*" ], "run_at": "document_idle", "js": [ "js\/content-scripts\/bandcamp-purchase-confirm.js" ] } ], "options_page": "html\/popup.html" } |