Lazy Search on Youtube

Simple and quick way to search for highlighted text on YouTube via right-click context menu or from popup. YouTube Helper.

Lazy Search on Youtube là gì?

Lazy Search on Youtube là một tiện ích mở rộng Chrome được phát triển bởi e1.b, và tính năng chính của nó là "Simple and quick way to search for highlighted text on YouTube via right-click context menu or from popup. YouTube Helper.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Lazy Search on Youtube 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 main purpose of the extension is to help you quickly open youtube - with the results according to your search.
You can search using:
- Highlight text on the page and right-click
- Enter text manually in the extension menu

Features:

1) Search from the context menu (right click)
2) Search from popup menu ( just tap the extension icon or use the keyboard hotkey to open it )
3) Show search suggestions
4) Keyboard navigation friendly (Arrows or Tabs)
5) Open youtube by clicking on youtube logo in  popup menu

Keyboard shortcut:
ctrl + Y open search popup

Additional features:
-change style menu popup

Privacy Policy:
The extension does not collect any user information!                    

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

Tên Lazy Search on Youtube Lazy Search on Youtube
ID amomdnjachcdfjcijmnolpgndbokbeha
URL Chính Thức https://chromewebstore.google.com/detail/lazy-search-on-youtube/amomdnjachcdfjcijmnolpgndbokbeha
Mô tả Simple and quick way to search for highlighted text on YouTube via right-click context menu or from popup. YouTube Helper.
Kích Thước Tệp 30.08 KB
Số Lần Cài Đặt 459
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-05-04
Ngày Phát Hành 2020-05-04
Đánh Giá 4.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển e1.b
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/allekss90/
URL Trang Trợ Giúp https://github.com/allekss90/
URL Trang Chính Sách Bảo Mật https://github.com/allekss90/extantions-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lazy Search on Youtube",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Simple and quick way to search for highlighted text on YouTube via right-click context menu or from popup. YouTube Helper.",
    "homepage_url": "https:\/\/github.com\/allekss90\/",
    "default_locale": "en",
    "permissions": [
        "declarativeContent",
        "storage",
        "contextMenus",
        "tabs",
        "*:\/\/*.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": ".\/options\/options.html",
        "open_in_tab": false
    },
    "page_action": {
        "default_popup": ".\/popup\/popup.html",
        "default_title": "Lazy Search on Youtube",
        "default_icon": {
            "16": "images\/ico16.png",
            "32": "images\/ico32.png",
            "48": "images\/ico48.png",
            "128": "images\/ico128.png"
        }
    },
    "icons": {
        "16": "images\/ico16.png",
        "32": "images\/ico32.png",
        "48": "images\/ico48.png",
        "128": "images\/ico128.png"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Y",
                "windows": "Ctrl+Y",
                "mac": "Command+Y"
            }
        }
    }
}