Atomic Flow

The best way to avoid distractions and stay in flow.

Atomic Flow là gì?

Atomic Flow là một tiện ích mở rộng Chrome được phát triển bởi https://wilsonlimsetiawan.com, và tính năng chính của nó là "The best way to avoid distractions and stay in flow.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Atomic Flow

Tải xuống các tệp mở rộng Atomic Flow dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Atomic Flow Atomic Flow
ID gbeiphffnlkmgoclacceflphonplpigi
URL Chính Thức https://chromewebstore.google.com/detail/atomic-flow/gbeiphffnlkmgoclacceflphonplpigi
Mô tả The best way to avoid distractions and stay in flow.
Kích Thước Tệp 219 KB
Số Lần Cài Đặt 59
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2023-11-17
Ngày Phát Hành 2023-03-22
Đánh Giá 4.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://wilsonlimsetiawan.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/WilsonLimSet/AtomicFlow
URL Trang Trợ Giúp https://github.com/WilsonLimSet/AtomicFlow
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}