FLOW

This extension makes the webpage breathe

¿Qué es FLOW?

FLOW es una extensión de Chrome desarrollada por http://analogue.ai, y su función principal es "This extension makes the webpage breathe".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión FLOW

Descarga archivos de extensión FLOW en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre FLOW FLOW
ID fcpioljggfdmadgoogjlglicdffdmank
URL Oficial https://chrome.google.com/webstore/detail/flow/fcpioljggfdmadgoogjlglicdffdmank
Descripción This extension makes the webpage breathe
Tamaño del Archivo 367 KB
Cantidad de Instalaciones 43
Versión Actual beta
Última Actualización 2018-03-20
Fecha de Publicación 2018-03-20
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador http://analogue.ai
Tipo de Pago free
Idiomas Soportados 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\/"
    ]
}