Pandora: song title in tab title
Show the title of the currently-playing song in the Pandora tab's title
Co to jest Pandora: song title in tab title?
Pandora: song title in tab title to rozszerzenie Chrome opracowane przez Chris White, a jego główną funkcją jest „Show the title of the currently-playing song in the Pandora tab's title”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pandora: song title in tab title
Pobierz pliki rozszerzeń Pandora: song title in tab title w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 .
Podstawowe informacje o rozszerzeniu
Nazwa | Pandora: song title in tab title |
ID | oflhlgibekngfamkkcndafoaalcjjjng |
Oficjalny URL | https://chromewebstore.google.com/detail/pandora-song-title-in-tab/oflhlgibekngfamkkcndafoaalcjjjng |
Opis | Show the title of the currently-playing song in the Pandora tab's title |
Rozmiar pliku | 7.41 KB |
Liczba instalacji | 55 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2019-02-22 |
Data Publikacji | 2019-02-22 |
Deweloper | Chris White |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://cxw42.github.io/TabFern/privacy.html |
Obsługiwane Języki | 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\/*" ] } |