YTPlayer

Youtube Player

YTPlayerคืออะไร?

YTPlayer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fdal omar และคุณลักษณะหลักของมันคือ "Youtube Player"

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

screenshot

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

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

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

                        YTPlayer helps you control all of your opened Youtube videos either using keyboard shortcuts or directly using its popup window.

The player has audio controls + focus button which focus on a tab, skip button which skip the ad if any, and a button to show suggested youtube videos (exclamation mark icon).                    

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

ชื่อ YTPlayer YTPlayer
ID pakpfpcgppmjfecdmicncjoihpeledem
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ytplayer/pakpfpcgppmjfecdmicncjoihpeledem
คำอธิบาย Youtube Player
ขนาดไฟล์ 112 KB
จำนวนการติดตั้ง 1,397
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-10-04
วันที่เผยแพร่ 2020-08-30
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา fdal omar
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTPlayer",
    "description": "Youtube Player",
    "version": "1.1",
    "options_page": "pages\/options\/opts.html",
    "browser_action": {
        "default_icon": "assets\/icons\/128.png",
        "default_popup": "pages\/popup\/popup.html",
        "default_title": "YTPlayer"
    },
    "commands": {
        "Play": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y"
            },
            "description": "Play the video",
            "global": true
        },
        "Next": {
            "suggested_key": {
                "windows": "Ctrl+Shift+F"
            },
            "description": "Next video",
            "global": true
        },
        "Reload": {
            "suggested_key": {
                "windows": "Ctrl+Shift+E"
            },
            "description": "Load\/Reload video",
            "global": true
        },
        "Skip": {
            "suggested_key": {
                "windows": "Ctrl+Shift+K"
            },
            "description": "Skip Ad",
            "global": true
        }
    },
    "icons": {
        "16": "assets\/icons\/16.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "pages\/cs\/cs.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/www.youtube.com\/watch*",
        "notifications"
    ],
    "background": {
        "scripts": [
            "pages\/bg\/background.js"
        ],
        "persistent": false
    }
}