you style
Reorgnize the layout of youtube
you style란 무엇입니까?
you style은(는) zhenghuadai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reorgnize the layout of youtube"입니다.
확장 프로그램 스크린샷
you style 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The ui modual of youtube is reorganized. * For the Style Tight, the Comments, the Related and the List are tabulated into right sidebar. So you can watch video while watching the comments,related video or list. * Automatically click the "Skip" button when it appears for advertisements. * Add Loop button near the play button.
확장 프로그램 기본 정보
이름 | you style |
ID | kmeggnehaninleodkobioidpmlaodamd |
공식 URL | https://chromewebstore.google.com/detail/you-style/kmeggnehaninleodkobioidpmlaodamd |
설명 | Reorgnize the layout of youtube |
파일 크기 | 53.87 KB |
설치 횟수 | 604 |
현재 버전 | 1.3.17 |
최근 업데이트 | 2023-11-15 |
출시 날짜 | 2018-09-02 |
평점 | 4.04/5 총 23 개의 평점 |
개발자 | zhenghuadai |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "you style", "short_name": "youstyle", "version": "1.3.17", "default_locale": "en", "description": "Reorgnize the layout of youtube", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline';" }, "icons": { "16": "images\/youtubeStyle16.png", "48": "images\/youtubeStyle48.png", "128": "images\/youtubeStyle128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "jquery-3.3.1.min.js", "chrome.min.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ "youtubestyle.css" ], "run_at": "document_idle" } ], "action": { "default_icon": { "19": "images\/youtubeStyle19.png", "38": "images\/youtubeStyle38.png" }, "default_title": "you style", "default_popup": "menu.html" }, "host_permissions": [ "https:\/\/*.youtube.com\/*" ] } |