YouTube Everywhere

Lets YouTube videos play on any page with a YouTube Link

YouTube Everywhere là gì?

YouTube Everywhere là một tiện ích mở rộng Chrome được phát triển bởi Jared Frank, và tính năng chính của nó là "Lets YouTube videos play on any page with a YouTube Link".

Ả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 Everywhere

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

                        YouTube Everywhere adds small YouTube icons next YouTube links on any page. Clicking the icon will expand a small YouTube player to be able to watch the video without having to change pages or open a new tab!                    

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

Tên YouTube Everywhere YouTube Everywhere
ID aabngppaojjlinklfhfgdlofeddimohg
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-everywhere/aabngppaojjlinklfhfgdlofeddimohg
Mô tả Lets YouTube videos play on any page with a YouTube Link
Kích Thước Tệp 104 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 1.3.3
Cập Nhật Lần Cuối 2015-08-12
Ngày Phát Hành 2015-08-12
Đánh Giá 3.93/5 Tổng số 30 Đánh Giá
Nhà Phát Triển Jared Frank
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Everywhere",
    "description": "Lets YouTube videos play on any page with a YouTube Link",
    "version": "1.3.3",
    "icons": {
        "16": "img\/ytlogo128.png",
        "48": "img\/ytlogo128.png",
        "128": "img\/ytlogo128.png"
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "img\/youtube.png"
    ],
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.reddit.com\/",
                "*:\/\/www.reddit.com\/?*"
            ],
            "run_at": "document_end",
            "css": [
                "style.css"
            ],
            "js": [
                "jquery.min.js",
                "main.js"
            ]
        }
    ]
}