Pandora: song title in tab title
Show the title of the currently-playing song in the Pandora tab's title
Qu'est-ce que Pandora: song title in tab title ?
Pandora: song title in tab title est une extension Chrome développée par Chris White, et sa fonction principale est "Show the title of the currently-playing song in the Pandora tab's title".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pandora: song title in tab title
Téléchargez les fichiers d'extension Pandora: song title in tab title au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 .
Informations de Base sur l'Extension
Nom | Pandora: song title in tab title |
ID | oflhlgibekngfamkkcndafoaalcjjjng |
URL Officiel | https://chromewebstore.google.com/detail/pandora-song-title-in-tab/oflhlgibekngfamkkcndafoaalcjjjng |
Description | Show the title of the currently-playing song in the Pandora tab's title |
Taille du Fichier | 7.41 KB |
Nombre d'Installations | 55 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2019-02-22 |
Date de Publication | 2019-02-22 |
Développeur | Chris White |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://cxw42.github.io/TabFern/privacy.html |
Langues Prises en Charge | 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\/*" ] } |