Pandora: song title in tab title

Show the title of the currently-playing song in the Pandora tab's title

Pandora: song title in tab title란 무엇입니까?

Pandora: song title in tab title은(는) Chris White에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show the title of the currently-playing song in the Pandora tab's title"입니다.

확장 프로그램 스크린샷

screenshot

Pandora: song title in tab title 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        When you are playing Pandora through the browser, this extension shows the title and artist of the currently-playing song in the Pandora tab's title.  That's all!

As of v0.0.2, the extension also shows a thumb if you've thumbed up the current song.  That way you don't click back to the browser window to thumb up a song when you've already done so.

This extension does not collect any personal information.  The only permission it requests is to run on *.pandora.com (or else what would be the point? :) ).

To save CPU cycles, the title only updates every five seconds.

This extension is not affiliated with Pandora.

This extension is open-source, and is available at https://github.com/cxw42/pandora-title-in-tab .                    

확장 프로그램 기본 정보

이름 Pandora: song title in tab title Pandora: song title in tab title
ID oflhlgibekngfamkkcndafoaalcjjjng
공식 URL https://chromewebstore.google.com/detail/pandora-song-title-in-tab/oflhlgibekngfamkkcndafoaalcjjjng
설명 Show the title of the currently-playing song in the Pandora tab's title
파일 크기 7.41 KB
설치 횟수 55
현재 버전 0.0.2
최근 업데이트 2019-02-22
출시 날짜 2019-02-22
개발자 Chris White
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://cxw42.github.io/TabFern/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Christopher White",
    "manifest_version": 2,
    "name": "Pandora: song title in tab title",
    "version": "0.0.2",
    "description": "Show the title of the currently-playing song in the Pandora tab's title",
    "minimum_chrome_version": "49.0.0.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pandora.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "64": "assets\/icon64.png",
        "128": "assets\/icon128.png"
    },
    "browser_action": {
        "default_title": "Pandora song title bar",
        "default_icon": "assets\/icon64.png"
    },
    "permissions": [
        "*:\/\/*.pandora.com\/*"
    ]
}