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 |
| 官方網址 | 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
} | |