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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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": []
        }
    ]
}