Tubeit

Search and play YouTube videos without leaving your current tab. Tube it.

Tubeit là gì?

Tubeit là một tiện ích mở rộng Chrome được phát triển bởi taehoon.lee, và tính năng chính của nó là "Search and play YouTube videos without leaving your current tab. Tube it.".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        Tubeit - the simplest way to search and watch YouTube videos.

When you want to watch a YouTube video, search and play YouTube videos without opening a new tab.

Extension Features:
*Search for YouTube videos without opening a new tab
*To play, simply click on thumbnails or titles
*Watch videos on Fullscreen mode
*Scroll to load more videos
*Search bar is always active (you can search while the video is playing)
*Popout a new window of the video you are watching

Shortcut Key:
Ctrl/Command + i

version 1.0.2 : added "pop out" feature
version 1.0.1 : auto focus on search bar when starting up                    

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

Tên Tubeit Tubeit
ID digjbkcgjnjhhkkamhibpkniphndgoid
URL Chính Thức https://chrome.google.com/webstore/detail/tubeit/digjbkcgjnjhhkkamhibpkniphndgoid
Mô tả Search and play YouTube videos without leaving your current tab. Tube it.
Kích Thước Tệp 533 KB
Số Lần Cài Đặt 768
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2014-06-30
Ngày Phát Hành 2014-06-30
Đánh Giá 4.62/5 Tổng số 26 Đánh Giá
Nhà Phát Triển taehoon.lee
Loại Thanh Toán free
Trang Web Mở Rộng https://taehoonlee.com
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tubeit",
    "manifest_version": 2,
    "version": "1.0.2",
    "description": "Search and play YouTube videos without leaving your current tab. Tube it.",
    "icons": {
        "16": "img\/icon\/tubeit-16.png",
        "48": "img\/icon\/tubeit-48.png",
        "128": "img\/icon\/tubeit-128.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*.google.com\/*",
        "*:\/\/*.youtube.com\/*"
    ],
    "background": {
        "persistent": true,
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "img\/icon\/tubeit-48.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/lib\/jquery-2.1.1.js",
                "js\/popup\/popup.js",
                "js\/background\/background.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.youtube.com\/player_api https:\/\/www.youtube.com 'unsafe-eval' https:\/\/www.youtube.com\/player_api https:\/\/www.youtube.com https:\/\/www.youtube.com\/iframe_api https:\/\/s.ytimg.com https:\/\/apis.google.com; object-src 'self' https:\/\/www.youtube.com",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+I",
                "windows": "Ctrl+I",
                "mac": "Command+I"
            }
        }
    }
}