Spotipedia for Chrome

Use Spotify to listen to songs by a musician or band directly from their Wikipedia page

Spotipedia for Chrome란 무엇입니까?

Spotipedia for Chrome은(는) chingweichen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Use Spotify to listen to songs by a musician or band directly from their Wikipedia page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Spotipedia for Chrome 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension takes the name of the musician or band you are reading about on Wikipedia, and loads a Spotify music player with songs by that artist so you can listen to their music for free, right in the browser! Just click on the Spotipedia button when you are on a musician, band or singer's page on Wikipedia.org.

Millions of people use Wikipedia to learn about their favorite artists, and many use it to explore and discover other related artists in the world of music. Now, with Spotipedia for Chrome, you can actually LISTEN to the music of the artist you are reading about!

* You'll need the Spotify desktop app (FREE) to listen to the music. This can be downloaded by clicking on the Spotify link in the popup window. Spotify may not be available in all countries.

Updates
------------
v1.1.3 (Mar 20, 2015): Updated to new Spotify API

v1.1.2 (Sept 29, 2012): Increased playlist to 20 tracks

v1.1.1 (Sept 20, 2012): Added progress indicator when loading Spotify data. Also, now shows a Wikipedia search box when activated from a non-Wikipedia page.                    

확장 프로그램 기본 정보

이름 Spotipedia for Chrome Spotipedia for Chrome
ID hgfjkidofjemkpgfggfpebolkbhagmbf
공식 URL https://chrome.google.com/webstore/detail/spotipedia-for-chrome/hgfjkidofjemkpgfggfpebolkbhagmbf
설명 Use Spotify to listen to songs by a musician or band directly from their Wikipedia page
파일 크기 99.81 KB
설치 횟수 170
현재 버전 1.1.3
최근 업데이트 2015-03-20
출시 날짜 2015-03-20
평점 4.20/5 총 5 개의 평점
개발자 chingweichen
결제 유형 free
확장 프로그램 웹 사이트 http://www.facebook.com/pages/Spotipedia/382108901861180
도움말 페이지 URL http://www.facebook.com/pages/Spotipedia/382108901861180
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotipedia for Chrome",
    "version": "1.1.3",
    "manifest_version": 2,
    "description": "Use Spotify to listen to songs by a musician or band directly from their Wikipedia page",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.wikipedia.org\/*",
                "https:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}