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 là gì?
Pandora: song title in tab title là một tiện ích mở rộng Chrome được phát triển bởi Chris White, và tính năng chính của nó là "Show the title of the currently-playing song in the Pandora tab's title".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pandora: song title in tab title
Tải xuống các tệp mở rộng Pandora: song title in tab title dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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 .
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pandora: song title in tab title |
ID | oflhlgibekngfamkkcndafoaalcjjjng |
URL Chính Thức | https://chromewebstore.google.com/detail/pandora-song-title-in-tab/oflhlgibekngfamkkcndafoaalcjjjng |
Mô tả | Show the title of the currently-playing song in the Pandora tab's title |
Kích Thước Tệp | 7.41 KB |
Số Lần Cài Đặt | 55 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2019-02-22 |
Ngày Phát Hành | 2019-02-22 |
Nhà Phát Triển | Chris White |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://cxw42.github.io/TabFern/privacy.html |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |