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
官方網址 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
電子郵箱 [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": []
        }
    ]
}