Spotify Details Extractor
Extract the most important details of an album to the desired JSON.
Τι είναι το Spotify Details Extractor;
Το Spotify Details Extractor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://afonsojramos.me, και η κύρια λειτουργία του είναι "Extract the most important details of an album to the desired JSON.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Spotify Details Extractor
Λήψη αρχείων επέκτασης Spotify Details Extractor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Currently, my personal website uses a JSON Database to store the details of my favorite albums of the year. Each entry is constructed by the following JSON schema: { "title": "For the first time", "artist": "Black Country, New Road", "image": "https://i.scdn.co/image/ab67616d00001e020ffaa4f75b2297d36ff1e0ad", "url": "https://open.spotify.com/album/2PfgptDcfJTFtoZIS3AukX" } However, the process of extracting the details from the album page is quite tedious as I have to manually copy the album's URL, extract the album's title, artist and image URL. All of this requires the opening of the developer's console and makes the process rather slow. Therefore, I decided to create a browser extension that will extract the details from the album page, store them in the desired JSON object, and automatically copy it to the clipboard.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Spotify Details Extractor |
ID | kfpkjhjengocbiaipfcbdhpjbaenkanb |
Επίσημο URL | https://chromewebstore.google.com/detail/spotify-details-extractor/kfpkjhjengocbiaipfcbdhpjbaenkanb |
Περιγραφή | Extract the most important details of an album to the desired JSON. |
Μέγεθος Αρχείου | 10.54 KB |
Αριθμός Εγκαταστάσεων | 40 |
Τρέχουσα Έκδοση | 2.5.0 |
Τελευταία Ενημέρωση | 2023-05-11 |
Ημερομηνία Δημοσίευσης | 2021-12-25 |
Προγραμματιστής | https://afonsojramos.me |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/afonsojramos/spotify-details-extractor |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/afonsojramos/spotify-details-extractor/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spotify Details Extractor", "action": [], "description": "Extract the most important details of an album to the desired JSON.", "version": "2.5.0", "manifest_version": 3, "homepage_url": "https:\/\/github.com\/afonsojramos\/spotify-details-extractor", "background": { "service_worker": "service.js" }, "permissions": [ "scripting", "tabs" ], "host_permissions": [ "*:\/\/*.spotify.com\/*" ], "icons": { "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "96": "\/icons\/icon96.png", "128": "\/icons\/icon128.png" } } |