YouWork
Prevent YouTube distractions.
YouWork란 무엇입니까?
YouWork은(는) https://tash-had.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prevent YouTube distractions."입니다.
확장 프로그램 스크린샷
YouWork 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
UPDATE: You can now click YouTube links directly and have the video show directly on YouWork (without having to search for the video). YouWork redirects YouTube links to a clean, distraction-free version of YouTube. No "recommended videos", no "related videos", no comment, no likes, no side ads, no distractions. This helps prevent binge-watching videos and going down rabbit holes. This way, when you need to watch a video during your work-period, you can do so without the risk of getting distracted through videos that would show up on your YouTube dashboard. Right-click YouWork anytime for the option to pause. Click the YouWork icon anytime, to use a popup version. YouWork redirects to https://tash-had.github.io/YouWork/ For any issues, contact me at through the form here: http://t-saqif.com/hello YouWork has absolutely no association with YouTube, and is simply a tool to enhance productivity.
확장 프로그램 기본 정보
이름 | YouWork |
ID | imldehpbfplnfafinfamkneahoonapod |
공식 URL | https://chromewebstore.google.com/detail/youwork/imldehpbfplnfafinfamkneahoonapod |
설명 | Prevent YouTube distractions. |
파일 크기 | 29.04 KB |
설치 횟수 | 288 |
현재 버전 | 1.3 |
최근 업데이트 | 2020-12-27 |
출시 날짜 | 2018-03-19 |
평점 | 4.92/5 총 13 개의 평점 |
개발자 | https://tash-had.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://tash-had.com |
도움말 페이지 URL | http://tash-had.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouWork", "description": "Prevent YouTube distractions.", "version": "1.3", "permissions": [ "activeTab", "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "exclude_matches": [ "https:\/\/www.youtube.com\/embed\/*" ], "js": [ "background.js" ], "run_at": "document_start", "all_frames": true } ], "browser_action": { "default_popup": "popup.html" }, "icons": { "16": "img\/icon_16.png", "32": "img\/icon_32.png", "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "manifest_version": 2 } |