YTPlayer

Youtube Player

YTPlayer là gì?

YTPlayer là một tiện ích mở rộng Chrome được phát triển bởi fdal omar, và tính năng chính của nó là "Youtube Player".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YTPlayer

Tải xuống các tệp mở rộng YTPlayer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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).                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YTPlayer YTPlayer
ID pakpfpcgppmjfecdmicncjoihpeledem
URL Chính Thức https://chromewebstore.google.com/detail/ytplayer/pakpfpcgppmjfecdmicncjoihpeledem
Mô tả Youtube Player
Kích Thước Tệp 112 KB
Số Lần Cài Đặt 1,397
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-10-04
Ngày Phát Hành 2020-08-30
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển fdal omar
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}