FLOW
This extension makes the webpage breathe
Apa itu FLOW?
FLOW adalah ekstensi Chrome yang dikembangkan oleh http://analogue.ai, dan fitur utamanya adalah "This extension makes the webpage breathe".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi FLOW
Unduh file ekstensi FLOW dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | fcpioljggfdmadgoogjlglicdffdmank |
URL Resmi | https://chrome.google.com/webstore/detail/flow/fcpioljggfdmadgoogjlglicdffdmank |
Deskripsi | This extension makes the webpage breathe |
Ukuran File | 367 KB |
Jumlah Instalasi | 43 |
Versi Saat Ini | beta |
Terakhir Diperbarui | 2018-03-20 |
Tanggal Publikasi | 2018-03-20 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | http://analogue.ai |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/" ] } |