playpause

Pause and play again your music

playpauseคืออะไร?

playpause เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Deliaz และคุณลักษณะหลักของมันคือ "Pause and play again your music"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย playpause

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}