Youtube Short Controller

Youtube Shorts Controller

Youtube Short Controller là gì?

Youtube Short Controller là một tiện ích mở rộng Chrome được phát triển bởi https://misa198.vercel.app, và tính năng chính của nó là "Youtube Shorts Controller".

Ả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 Youtube Short Controller

Tải xuống các tệp mở rộng Youtube Short Controller 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

                        The extension will add to the Youtube Short player an overlay with video control functions including stop playing, fast forward or rewind the video for a period of time that can be set in the settings popup.                    

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

Tên Youtube Short Controller Youtube Short Controller
ID fbkgbegeloakaicldjgkamfmpjhlmibi
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi
Mô tả Youtube Shorts Controller
Kích Thước Tệp 24.95 KB
Số Lần Cài Đặt 3,214
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2022-10-15
Ngày Phát Hành 2022-04-28
Đánh Giá 3.94/5 Tổng số 16 Đánh Giá
Nhà Phát Triển https://misa198.vercel.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/misa198/youtube-shorts-controller
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Youtube Shorts Controller",
    "version": "1.0.5",
    "author": "Thanh Vu",
    "homepage_url": "https:\/\/github.com\/thanhvu1982\/youtube-shorts-controller",
    "manifest_version": 3,
    "name": "Youtube Short Controller",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icons\/icon64.png",
        "default_popup": "popup.html"
    }
}