YouTubeHover
A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.
YouTubeHover란 무엇입니까?
YouTubeHover은(는) Sukrit Chhabra에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube."입니다.
확장 프로그램 스크린샷
YouTubeHover 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can preview videos by hovering on their thumbnails. You can choose the settings that work best for you from the options page. Note: The extension does not collect any user data (browsing or otherwise) from youtube.com. Please be sure to leave a review or any feedback you have :)
확장 프로그램 기본 정보
이름 | |
ID | ojbkdiobfdncjfbcmolchhkmcnmhobog |
공식 URL | https://chrome.google.com/webstore/detail/youtubehover/ojbkdiobfdncjfbcmolchhkmcnmhobog |
설명 | A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube. |
파일 크기 | 8.63 MB |
설치 횟수 | 479 |
현재 버전 | 0.1.12 |
최근 업데이트 | 2018-02-27 |
출시 날짜 | 2018-02-27 |
평점 | 3.91/5 총 23 개의 평점 |
개발자 | Sukrit Chhabra |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sukritchhabra/YouTubeHover |
도움말 페이지 URL | https://github.com/sukritchhabra/YouTubeHover/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTubeHover", "description": "A Chrome Extension that allows you to preview videos when you hover on their thumbnails on YouTube.", "version": "0.1.12", "author": "Sukrit Chhabra", "browser_action": { "default_icon": "imgs\/touch\/icon_96.png", "default_title": "YouTubeHover" }, "options_ui": { "page": "options\/options.html", "chrome_style": true, "open_in_tab": true }, "permissions": [ "storage", "notifications" ], "background": { "scripts": [ "analytics.js", "background.js" ] }, "content_scripts": [ { "js": [ "bower_components\/jquery\/dist\/jquery.min.js", "iframe_api.js", "widgetAPI.js", "options\/defaultSettings.js", "content.js", "controllers\/controllers.min.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com https:\/\/s.ytimg.com\/; object-src 'self'" } |