Fold Socks
A minimalist distraction blocker to keep you on task.
Fold Socksคืออะไร?
Fold Socks เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://foldsocks.com และคุณลักษณะหลักของมันคือ "A minimalist distraction blocker to keep you on task."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fold Socks
ดาวน์โหลดไฟล์ส่วนขยาย Fold Socks ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Do you ever sit down to complete something only to be distracted by the internet? STAY IN THE FLOW Alternate between blocks of concentration and short breaks to supercharge your productivity. GUARD YOUR FOCUS When your focus slips, we'll block distracting websites and nudge you towards your current task. SMALL TASKS LEAD TO LARGE GOALS Accomplish your goals daily by breaking them into small tasks and focusing on one thing at a time.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Fold Socks |
ID | jgoglnfeholbpehohjbelilljdphphli |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fold-socks/jgoglnfeholbpehohjbelilljdphphli |
คำอธิบาย | A minimalist distraction blocker to keep you on task. |
ขนาดไฟล์ | 764 KB |
จำนวนการติดตั้ง | 87 |
เวอร์ชันปัจจุบัน | 1.0.3 |
อัปเดตครั้งล่าสุด | 2021-09-03 |
วันที่เผยแพร่ | 2021-02-14 |
คะแนน | 4.80/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | https://foldsocks.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://foldsocks.com |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fold Socks", "version": "1.0.3", "description": "A minimalist distraction blocker to keep you on task.", "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "chrome_url_overrides": { "newtab": "pages\/newtab.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/blockCheck.js" ], "run_at": "document_start" } ], "icons": { "16": "fold_icon_white_16.png", "32": "fold_icon_white_32.png", "64": "fold_icon_white_64.png" }, "browser_action": { "default_icon": { "16": "fold_icon_white_16.png", "32": "fold_icon_white_32.png", "64": "fold_icon_white_64.png" }, "default_title": "Fold Socks" }, "manifest_version": 2 } |