YouPause

Allows to control YouTube videos using hotkeys

YouPauseคืออะไร?

YouPause เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Andy Lemzikov และคุณลักษณะหลักของมันคือ "Allows to control YouTube videos using hotkeys"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย YouPause ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Allows to control YouTube videos using hotkeys. By default use Ctrl+Shift+1 to pause all running YouTube videos in all tabs; Ctrl+Shift+2 to resume previously paused videos; Ctrl+Shift+3 and Ctrl+Shift+4 allow to move through videos in a playlist.
Hotkeys are customizable in Chrome Keyboard Shortcuts settings (chrome://extensions/shortcuts) 

What is new in version 4.1:
* added two new hotkeys to navigate to next/prev video in a playlist

What is new in version 4.0:
* a Popup window with a list of paused videos (click on the extension's button in Chrome to see it)
* an option to disable notifications
* fixed some bugs
* Google Analytics tracking                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouPause YouPause
ID bojdfedfgcfdmggacgigpgemafahnbme
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youpause/bojdfedfgcfdmggacgigpgemafahnbme
คำอธิบาย Allows to control YouTube videos using hotkeys
ขนาดไฟล์ 138 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 4.1
อัปเดตครั้งล่าสุด 2019-03-26
วันที่เผยแพร่ 2019-03-25
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Andy Lemzikov
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouPause",
    "description": "Allows to control YouTube videos using hotkeys",
    "version": "4.1",
    "background": {
        "persistent": true,
        "scripts": [
            "scripts\/gaload.js",
            "scripts\/consts.js",
            "scripts\/globals.js",
            "scripts\/utils.js",
            "scripts\/handlers.js",
            "scripts\/bg.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/youtube-pause-128.png",
        "default_title": "YouTube Pause",
        "default_popup": "views\/index.html"
    },
    "commands": {
        "pause-youtube-command": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Pauses all running YouTube videos",
            "global": true
        },
        "resume-youtube-command": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Resumes previously paused YouTube videos",
            "global": true
        },
        "next-youtube-command": {
            "suggested_key": {
                "default": "Ctrl+Shift+3"
            },
            "description": "Selects next YouTube video",
            "global": true
        },
        "prev-youtube-command": {
            "suggested_key": {
                "default": "Ctrl+Shift+4"
            },
            "description": "Selects previous YouTube video",
            "global": true
        }
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/watch*",
        "notifications",
        "storage"
    ]
}