Atomic Flow

The best way to avoid distractions and stay in flow.

Apa itu Atomic Flow?

Atomic Flow adalah ekstensi Chrome yang dikembangkan oleh https://wilsonlimsetiawan.com, dan fitur utamanya adalah "The best way to avoid distractions and stay in flow.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Atomic Flow

Unduh file ekstensi Atomic Flow dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Atomic Flow Atomic Flow
ID gbeiphffnlkmgoclacceflphonplpigi
URL Resmi https://chromewebstore.google.com/detail/atomic-flow/gbeiphffnlkmgoclacceflphonplpigi
Deskripsi The best way to avoid distractions and stay in flow.
Ukuran File 219 KB
Jumlah Instalasi 59
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2023-11-17
Tanggal Publikasi 2023-03-22
Penilaian 4.50/5 Total 8 Penilaian
Pengembang https://wilsonlimsetiawan.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/WilsonLimSet/AtomicFlow
URL Halaman Bantuan https://github.com/WilsonLimSet/AtomicFlow
Bahasa yang Didukung 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": []
        }
    ]
}