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文件

下載Pandora: song title in tab title擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}