Atomic Flow

The best way to avoid distractions and stay in flow.

Wat is Atomic Flow?

Atomic Flow is een Chrome-extensie ontwikkeld door https://wilsonlimsetiawan.com, en de belangrijkste functie is "The best way to avoid distractions and stay in flow.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Atomic Flow

Download Atomic Flow-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Atomic Flow Atomic Flow
ID gbeiphffnlkmgoclacceflphonplpigi
Officiële URL https://chromewebstore.google.com/detail/atomic-flow/gbeiphffnlkmgoclacceflphonplpigi
Beschrijving The best way to avoid distractions and stay in flow.
Bestandsgrootte 219 KB
Aantal Installaties 59
Huidige Versie 0.1.1
Laatst Bijgewerkt 2023-11-17
Publicatiedatum 2023-03-22
Beoordeling 4.50/5 Totaal 8 Beoordelingen
Ontwikkelaar https://wilsonlimsetiawan.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/WilsonLimSet/AtomicFlow
Help Pagina-URL https://github.com/WilsonLimSet/AtomicFlow
Ondersteunde Talen 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": []
        }
    ]
}