FLOW
This extension makes the webpage breathe
What is FLOW?
FLOW is a Chrome extension developed by http://analogue.ai, and its main feature is "This extension makes the webpage breathe".
Extension Screenshots
Download FLOW Extension CRX File
Download FLOW extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | fcpioljggfdmadgoogjlglicdffdmank |
Official URL | https://chrome.google.com/webstore/detail/flow/fcpioljggfdmadgoogjlglicdffdmank |
Description | This extension makes the webpage breathe |
File Size | 367 KB |
Installation Count | 43 |
Current Version | beta |
Last Updated | 2018-03-20 |
Publish Date | 2018-03-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | http://analogue.ai |
Payment Type | free |
Supported Languages | 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\/" ] } |