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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Chris White, και η κύρια λειτουργία του είναι "Show the title of the currently-playing song in the Pandora tab's title".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Pandora: song title in tab title

Λήψη αρχείων επέκτασης 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\/*"
    ]
}