Play/Pause Button For Pocket Casts 2

Simple play/pause button for Pocket Casts. This button allows to pause or resume current podcasts independently of current tab.

什么是Play/Pause Button For Pocket Casts 2?

Play/Pause Button For Pocket Casts 2是由illuzor开发的Chrome扩展程序,该扩展的主要功能是“Simple play/pause button for Pocket Casts. This button allows to pause or resume current podcasts independently of current tab.”。

扩展截图

screenshot
screenshot

下载Play/Pause Button For Pocket Casts 2扩展crx文件

下载Play/Pause Button For Pocket Casts 2扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Simple play/pause button for Pocket Casts with media keys support. This button allows to pause or resume current podcasts independently of current tab or current window. If Pocket Casts site is not open, it will be open by click on the icon.

Keyboard media keys support:
 - Play/Pause ⏯;
 - Back ⏮ - skip back;
 - Forward ⏭ - skip forward.

Media keys may be disabled in options.                    

扩展基本信息

名称 Play/Pause Button For Pocket Casts 2 Play/Pause Button For Pocket Casts 2
ID ogdnlmiknnmedpcnjnkjncdjjgfdkiik
官方URL https://chromewebstore.google.com/detail/playpause-button-for-pock/ogdnlmiknnmedpcnjnkjncdjjgfdkiik
简介 Simple play/pause button for Pocket Casts. This button allows to pause or resume current podcasts independently of current tab.
文件大小 17.4 KB
安装次数 339
当前版本 2.1.2
更新时间 2024-01-17
上架时间 2020-01-05
评分 5.00/5 共10次评分
开发者 illuzor
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/illuzor/Play-Button-For-Pocket-Casts/
帮助页面URL https://github.com/illuzor/Play-Button-For-Pocket-Casts/issues
支持的语言 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_name__",
    "short_name": "__MSG_ext_short_name__",
    "description": "__MSG_ext_description__",
    "version": "2.1.2",
    "author": "Artem Zanin",
    "default_locale": "en",
    "icons": {
        "16": "images\/Play.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/play.pocketcasts.com\/*\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.pocketcasts.com\/*\/"
            ],
            "js": [
                "action-play.js",
                "action-skip.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.pocketcasts.com\/*"
        ]
    },
    "commands": {
        "play-pause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "__MSG_play_pause__",
            "global": true
        },
        "jump-back": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "__MSG_jump_back__",
            "global": true
        },
        "jump-forward": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "__MSG_jump_forward__",
            "global": true
        }
    },
    "action": []
}