Atomic Flow

The best way to avoid distractions and stay in flow.

Was ist Atomic Flow?

Atomic Flow ist eine Chrome-Erweiterung, die von https://wilsonlimsetiawan.com entwickelt wurde, und ihr Hauptmerkmal ist "The best way to avoid distractions and stay in flow.".

Erweiterungsscreenshots

screenshot

Atomic Flow-Erweiterungs-CRX-Datei herunterladen

Laden Sie Atomic Flow-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Atomic Flow Atomic Flow
ID gbeiphffnlkmgoclacceflphonplpigi
Offizielle URL https://chromewebstore.google.com/detail/atomic-flow/gbeiphffnlkmgoclacceflphonplpigi
Beschreibung The best way to avoid distractions and stay in flow.
Dateigröße 219 KB
Installationsanzahl 59
Aktuelle Version 0.1.1
Letztes Update 2023-11-17
Veröffentlichungsdatum 2023-03-22
Bewertung 4.50/5 Insgesamt 8 Bewertungen
Entwickler https://wilsonlimsetiawan.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/WilsonLimSet/AtomicFlow
Hilfeseite URL https://github.com/WilsonLimSet/AtomicFlow
Unterstützte Sprachen 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": []
        }
    ]
}