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