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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show the title of the currently-playing song in the Pandora tab's title"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pandora: song title in tab title एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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\/*" ] } |