Atomic Flow

The best way to avoid distractions and stay in flow.

Atomic Flowคืออะไร?

Atomic Flow เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://wilsonlimsetiawan.com และคุณลักษณะหลักของมันคือ "The best way to avoid distractions and stay in flow."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Atomic Flow

ดาวน์โหลดไฟล์ส่วนขยาย Atomic Flow ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Atomic Flow is a Chrome extension designed to help you stay focused and minimize distractions while you work. It lets you block popular social media sites like YouTube, Facebook, Reddit, Instagram, and LinkedIn with a simple click of a button, so you can work more productively and efficiently.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Atomic Flow Atomic Flow
ID gbeiphffnlkmgoclacceflphonplpigi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/atomic-flow/gbeiphffnlkmgoclacceflphonplpigi
คำอธิบาย The best way to avoid distractions and stay in flow.
ขนาดไฟล์ 219 KB
จำนวนการติดตั้ง 59
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2023-11-17
วันที่เผยแพร่ 2023-03-22
คะแนน 4.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา https://wilsonlimsetiawan.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/WilsonLimSet/AtomicFlow
URL หน้าช่วยเหลือ https://github.com/WilsonLimSet/AtomicFlow
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Atomic Flow",
    "version": "0.1.1",
    "description": "The best way to avoid distractions and stay in flow.",
    "options_ui": {
        "page": "src\/pages\/options\/index.html"
    },
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon-34.png"
    },
    "chrome_url_overrides": [],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": [
                "contentStyle.css"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "src\/pages\/devtools\/index.html",
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "contentStyle.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}