Tubeit
Search and play YouTube videos without leaving your current tab. Tube it.
Tubeit란 무엇입니까?
Tubeit은(는) taehoon.lee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search and play YouTube videos without leaving your current tab. Tube it."입니다.
확장 프로그램 스크린샷
Tubeit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | |
ID | digjbkcgjnjhhkkamhibpkniphndgoid |
공식 URL | https://chrome.google.com/webstore/detail/tubeit/digjbkcgjnjhhkkamhibpkniphndgoid |
설명 | Search and play YouTube videos without leaving your current tab. Tube it. |
파일 크기 | 533 KB |
설치 횟수 | 768 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2014-06-30 |
출시 날짜 | 2014-06-30 |
평점 | 4.62/5 총 26 개의 평점 |
개발자 | taehoon.lee |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://taehoonlee.com |
지원되는 언어 | 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" } } } } |