playpause

Pause and play again your music

playpauseとは何ですか?

playpauseはDeliazによって開発されたChromeの拡張機能で、その主な機能は「Pause and play again your music」です。

拡張機能のスクリーンショット

screenshot

playpause拡張機能のCRXファイルをダウンロード

playpause拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        PlayPause is a small button which allows to your music and video on pause and then play again. 
Currently supports: 
 – YouTube.com
 – SoundCloud.com
 – PromoDJ.com

It can be more effective if you will set keyboard shortcut on the button in your Chrome Extension page.                    

拡張機能の基本情報

名前 playpause playpause
ID nphcoecmaigjlaadabjihhoaiaopcadk
公式URL https://chromewebstore.google.com/detail/playpause/nphcoecmaigjlaadabjihhoaiaopcadk
説明 Pause and play again your music
ファイルサイズ 10.48 KB
インストール数 72
現在のバージョン 2.0.1
最終更新日 2018-09-11
公開日 2018-09-10
評価 5.00/5 合計 5 レビュー
開発者 Deliaz
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/deliaz/playpause
プライバシーポリシーページのURL https://clipboardextension.com/policy.html
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "playpause",
    "version": "2.0.1",
    "description": "Pause and play again your music",
    "permissions": [
        "tabs",
        "*:\/\/promodj.com\/*",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/soundcloud.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "imgs\/38.png"
    },
    "icons": {
        "16": "imgs\/16.png",
        "48": "imgs\/48.png",
        "128": "imgs\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/promodj.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "inject.js"
    ]
}