FLOW
This extension makes the webpage breathe
O que é FLOW?
FLOW é uma extensão do Chrome desenvolvida por http://analogue.ai, e sua principal característica é "This extension makes the webpage breathe".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão FLOW
Baixe arquivos de extensão FLOW no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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. Informações Básicas da Extensão
| Nome | |
| ID | fcpioljggfdmadgoogjlglicdffdmank |
| URL Oficial | https://chrome.google.com/webstore/detail/flow/fcpioljggfdmadgoogjlglicdffdmank |
| Descrição | This extension makes the webpage breathe |
| Tamanho do Arquivo | 367 KB |
| Contagem de Instalações | 43 |
| Versão Atual | beta |
| Última Atualização | 2018-03-20 |
| Data de Publicação | 2018-03-20 |
| Classificação | 5.00/5 Total de 1 Avaliações |
| Desenvolvedor | http://analogue.ai |
| Tipo de Pagamento | free |
| Idiomas Suportados | 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\/"
]
} | |