Spotify Details Extractor

Extract the most important details of an album to the desired JSON.

Spotify Details Extractor क्या है?

Spotify Details Extractor https://afonsojramos.me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extract the most important details of an album to the desired JSON."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Spotify Details Extractor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    }
}