Atomic Flow

The best way to avoid distractions and stay in flow.

Что такое Atomic Flow?

Atomic Flow - это расширение Chrome, разработанное https://wilsonlimsetiawan.com, и его основная функция - "The best way to avoid distractions and stay in flow.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Atomic Flow

Скачайте файлы расширений 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
Электронная почта [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": []
        }
    ]
}