Pandora: song title in tab title

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

Co je Pandora: song title in tab title?

Pandora: song title in tab title je rozšíření Chrome vyvinuté Chris White, a jeho hlavní funkcí je „Show the title of the currently-playing song in the Pandora tab's title“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Pandora: song title in tab title

Stáhněte si soubory rozšíření Pandora: song title in tab title ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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 .                    

Základní Informace o Rozšíření

Název Pandora: song title in tab title Pandora: song title in tab title
ID oflhlgibekngfamkkcndafoaalcjjjng
Oficiální URL https://chromewebstore.google.com/detail/pandora-song-title-in-tab/oflhlgibekngfamkkcndafoaalcjjjng
Popis Show the title of the currently-playing song in the Pandora tab's title
Velikost souboru 7.41 KB
Počet instalací 55
Aktuální Verze 0.0.2
Poslední Aktualizace 2019-02-22
Datum Vydání 2019-02-22
Vývojář Chris White
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://cxw42.github.io/TabFern/privacy.html
Podporované Jazyky 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\/*"
    ]
}