Spotify Details Extractor

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

什麼是Spotify Details Extractor?

Spotify Details Extractor是由https://afonsojramos.me開發的Chrome擴展程式,該擴展的主要功能是“Extract the most important details of an album to the desired JSON.”。

擴展截圖

screenshot

下載Spotify Details Extractor擴展crx文件

下載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 Spotify Details Extractor
ID kfpkjhjengocbiaipfcbdhpjbaenkanb
官方網址 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"
    }
}