FLOW
This extension makes the webpage breathe
Vad är FLOW?
FLOW är en Chrome-tillägg utvecklad av http://analogue.ai, och dess huvudfunktion är "This extension makes the webpage breathe".
Tilläggsskärmbilder
Ladda ner FLOW-förlängningens CRX-fil
Ladda ner FLOW-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | fcpioljggfdmadgoogjlglicdffdmank |
Officiell webbadress | https://chrome.google.com/webstore/detail/flow/fcpioljggfdmadgoogjlglicdffdmank |
Beskrivning | This extension makes the webpage breathe |
Filstorlek | 367 KB |
Antal Installationer | 43 |
Aktuell Version | beta |
Senast Uppdaterad | 2018-03-20 |
Publiceringsdatum | 2018-03-20 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | http://analogue.ai |
Betalningssätt | free |
Stödda Språk | 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\/" ] } |