YouTube™ Productivity Mode
Experience YouTube™ in Productivity Mode
YouTube™ Productivity Modeคืออะไร?
YouTube™ Productivity Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย webtaculars และคุณลักษณะหลักของมันคือ "Experience YouTube™ in Productivity Mode"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube™ Productivity Mode
ดาวน์โหลดไฟล์ส่วนขยาย YouTube™ Productivity Mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This product is inspired from Indistractable by Nir Eyal. According to the book, one source of distraction are the external triggers that lead us to distracting activities and thus leave less time for things that we actually intend to do. YouTube is one such place for me on the internet where I often wander and get lost from the focus track that I plan to be on. No doubt YouTube is a great place to learn but it does have a lot of distracting content too. Taking cue from the book, we created YouTube Productivity Mode, with an objective to reduce the triggers. Switch YPM in “Productivity Mode” to blur all the thumbnails on YouTube so that the catchy and clickbaity thumbnails don’t grab your attention. So now if you get redirected to YouTube while working/studying, the recommended thumbnails won’t catch your eyes and you will hopefully switch back to your task again without losing your focus. By default, YPM works on “Leisure Mode” where you’ll get the same experience of YouTube without annoying ads. We are indie makers who believe that focus is a superpower. If this app helps you in any way, please help us too. There are a lot of ways you could help us: - Share this extension with your friends. - Write a review and tell us what other problems can we solve for you. - Contribute financially via BuyMeACoffee - https://www.buymeacoffee.com/webtaculars?ref=chrome-web-store
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube™ Productivity Mode |
ID | hfmieanpcjmhneggofkdjhmlabjmbbaj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-productivity-mode/hfmieanpcjmhneggofkdjhmlabjmbbaj |
คำอธิบาย | Experience YouTube™ in Productivity Mode |
ขนาดไฟล์ | 13.18 KB |
จำนวนการติดตั้ง | 1,079 |
เวอร์ชันปัจจุบัน | 2.3 |
อัปเดตครั้งล่าสุด | 2020-10-27 |
วันที่เผยแพร่ | 2020-07-01 |
คะแนน | 4.53/5 รวมทั้งหมด 19 คะแนน |
ผู้พัฒนา | webtaculars |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube\u2122 Productivity Mode", "description": "Experience YouTube\u2122 in Productivity Mode", "version": "2.3", "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ "youtube.css" ], "js": [ "js\/index.js" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "browser_action": { "default_title": "YouTube\u2122 Productivity Mode", "default_popup": "options.html" }, "permissions": [ "storage", "*:\/\/www.youtube.com\/*" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/cdnjs.buymeacoffee.com\/1.0.0\/button.prod.min.js; object-src 'self'" } |