FLOW
This extension makes the webpage breathe
Что такое FLOW?
FLOW - это расширение Chrome, разработанное http://analogue.ai, и его основная функция - "This extension makes the webpage breathe".
Снимки экрана расширения
Скачать файл CRX расширения FLOW
Скачайте файлы расширений FLOW в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
FLOW applies human heartbeat and breathing patterns to any web page being visited. This Chrome extension helps humans to regulate their breathing rhythm without getting distracted while working behind computer screens.
Основная информация о расширении
Название | |
ID | fcpioljggfdmadgoogjlglicdffdmank |
Официальный URL | https://chrome.google.com/webstore/detail/flow/fcpioljggfdmadgoogjlglicdffdmank |
Описание | This extension makes the webpage breathe |
Размер файла | 367 KB |
Количество установок | 43 |
Текущая Версия | beta |
Последнее Обновление | 2018-03-20 |
Дата публикации | 2018-03-20 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | http://analogue.ai |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "options_page": "options.html", "name": "FLOW", "short_name": "flow", "description": "This extension makes the webpage breathe", "version": "0.0.0.6", "version_name": "beta", "offline_enabled": true, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "styles.css" ], "js": [ "jquery.js", "jq.js", "flow.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_behaviour": [ "jq.js, flow.js" ] }, "background": { "scripts": [ "flow.js" ], "persistent": true }, "permissions": [ "storage", "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/" ] } |