Mini Y
Makes YouTube video float while you're reading/writing comments so you can do both at the same time.
Mini Y란 무엇입니까?
Mini Y은(는) https://jianweichuah.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes YouTube video float while you're reading/writing comments so you can do both at the same time."입니다.
확장 프로그램 스크린샷
Mini Y 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Install -> refresh YouTube page -> scroll down -> read comments and watch videos at the same time.
Open-source on GitHub: https://github.com/jianweichuah/miniyoutube
If you'd like to buy me coffee:
https://cash.me/$jianweichuah
https://www.paypal.me/jianweichuah
** Note: the recent update doesn't really read your browsing history. That permission is required to support the enable/disable feature when you click on the app icon on the top right corner. You can verify that I do not read any of your browsing history at https://github.com/jianweichuah/miniyoutube. Also, if you feel like that feature is not necessary, I'd be happy to hear about it.**
Features:
- Automatically switch the video to small screen when the video player is out of screen and restore it when you scroll up again.
- Draggable screen to allow you to choose where to place it.
- Resizable screen to let you pick the perfect size.
- Remembers the the size and position of the screen where you left off for the next videos.
- No extra steps required!
Note:
YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions. 확장 프로그램 기본 정보
| 이름 | |
| ID | acphfpihfjpgnihkgelafhmjeoodbehp |
| 공식 URL | https://chrome.google.com/webstore/detail/mini-y/acphfpihfjpgnihkgelafhmjeoodbehp |
| 설명 | Makes YouTube video float while you're reading/writing comments so you can do both at the same time. |
| 파일 크기 | 96.92 KB |
| 설치 횟수 | 9,000 |
| 현재 버전 | 1.2.30 |
| 최근 업데이트 | 2024-01-08 |
| 출시 날짜 | 2018-04-30 |
| 평점 | 4.47/5 총 354 개의 평점 |
| 개발자 | https://jianweichuah.github.io |
| 이메일 | [email protected] |
| 결제 유형 | in_app |
| 확장 프로그램 웹 사이트 | https://jianweichuah.github.io/miniyoutube/ |
| 도움말 페이지 URL | https://github.com/jianweichuah/miniyoutube/issues |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mini Y",
"author": "Mini Y contributors",
"description": "Makes YouTube video float while you're reading\/writing comments so you can do both at the same time.",
"version": "1.2.30",
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/watch*"
],
"css": [
"floatVideo.css"
],
"js": [
"jquery-2.1.3.min.js",
"floatVideo.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Mini Y",
"default_icon": {
"19": "images\/icon128.png",
"38": "images\/icon128.png",
"128": "images\/icon128.png"
},
"default_popup": "popup.html"
},
"permissions": [
"storage",
"tabs"
]
} | |