Pandora Bar Button

Play/Pause Pandora from the Toolbar

Pandora Bar Button là gì?

Pandora Bar Button là một tiện ích mở rộng Chrome được phát triển bởi Middy, và tính năng chính của nó là "Play/Pause Pandora from the Toolbar".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pandora Bar Button

Tải xuống các tệp mở rộng Pandora Bar Button 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

                        Adds a minimalist play/pause button to the Chrome toolbar. This is a minimalist extension.

It will:

* Launch Pandora if there is not already a tab present
* Play or Pause Pandora when clicked
* Update its visual appearance to reflect Pandora's state (playing or paused.)

It will not:

* Download music
* Skip/Thumb-up/Thumb-down tracks
* Use more resources than necessary
* Require more permissions than necessary

This app was based on the extension "Play / Pause Pandora Tab" by pedroestrada.me.

Available on Github at https://github.com/nettlep/chrome-ext-PlayPausePandora                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pandora Bar Button Pandora Bar Button
ID clnpfgoalebpfdojhhmoiapafcgiaajo
URL Chính Thức https://chrome.google.com/webstore/detail/pandora-bar-button/clnpfgoalebpfdojhhmoiapafcgiaajo
Mô tả Play/Pause Pandora from the Toolbar
Kích Thước Tệp 21.33 KB
Số Lần Cài Đặt 200
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2017-02-14
Ngày Phát Hành 2017-02-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Middy
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "action-play.png"
    },
    "content_scripts": [
        {
            "js": [
                "pppandora.js"
            ],
            "matches": [
                "*:\/\/*.pandora.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Play\/Pause Pandora from the Toolbar",
    "icons": {
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "name": "Pandora Bar Button",
    "permissions": [
        "tabs",
        "webNavigation",
        "http:\/\/*.pandora.com\/",
        "https:\/\/*.pandora.com\/"
    ],
    "version": "1.0.0"
}