YouWork
Prevent YouTube distractions.
什么是YouWork?
YouWork是由https://tash-had.com开发的Chrome扩展程序,该扩展的主要功能是“Prevent YouTube distractions.”。
扩展截图
下载YouWork扩展crx文件
下载YouWork扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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
} | |