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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}