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란 무엇입니까?
Lazy Search on Youtube은(는) e1.b에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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!
확장 프로그램 기본 정보
이름 | Lazy Search on Youtube |
ID | amomdnjachcdfjcijmnolpgndbokbeha |
공식 URL | https://chromewebstore.google.com/detail/lazy-search-on-youtube/amomdnjachcdfjcijmnolpgndbokbeha |
설명 | Simple and quick way to search for highlighted text on YouTube via right-click context menu or from popup. YouTube Helper. |
파일 크기 | 30.08 KB |
설치 횟수 | 459 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-05-04 |
출시 날짜 | 2020-05-04 |
평점 | 4.83/5 총 6 개의 평점 |
개발자 | e1.b |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/allekss90/ |
도움말 페이지 URL | https://github.com/allekss90/ |
개인정보 보호 정책 페이지 URL | https://github.com/allekss90/extantions-policy |
지원되는 언어 | 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" } } } } |