Atomic Flow

The best way to avoid distractions and stay in flow.

Atomic Flowとは何ですか?

Atomic Flowはhttps://wilsonlimsetiawan.comによって開発されたChromeの拡張機能で、その主な機能は「The best way to avoid distractions and stay in flow.」です。

拡張機能のスクリーンショット

screenshot

Atomic Flow拡張機能のCRXファイルをダウンロード

Atomic Flow拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/WilsonLimSet/AtomicFlow
ヘルプページのURL 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": []
        }
    ]
}