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
官方網址 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
電子郵箱 [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"
    ]
}