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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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": []
        }
    ]
}