Atomic Flow

The best way to avoid distractions and stay in flow.

What is Atomic Flow?

Atomic Flow is a Chrome extension developed by https://wilsonlimsetiawan.com, and its main feature is "The best way to avoid distractions and stay in flow.".

Extension Screenshots

screenshot

Download Atomic Flow Extension CRX File

Download Atomic Flow extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Atomic Flow Atomic Flow
ID gbeiphffnlkmgoclacceflphonplpigi
Official URL https://chromewebstore.google.com/detail/atomic-flow/gbeiphffnlkmgoclacceflphonplpigi
Description The best way to avoid distractions and stay in flow.
File Size 219 KB
Installation Count 59
Current Version 0.1.1
Last Updated 2023-11-17
Publish Date 2023-03-22
Rating 4.50/5 Total 8 Ratings
Developer https://wilsonlimsetiawan.com
Email [email protected]
Payment Type free
Extension Website https://github.com/WilsonLimSet/AtomicFlow
Help Page URL https://github.com/WilsonLimSet/AtomicFlow
Supported Languages 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": []
        }
    ]
}