FLOW

This extension makes the webpage breathe

Cos'è FLOW?

FLOW è un'estensione di Chrome sviluppata da http://analogue.ai, e la sua funzione principale è "This extension makes the webpage breathe".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione FLOW

Scarica i file di estensione FLOW in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome FLOW FLOW
ID fcpioljggfdmadgoogjlglicdffdmank
URL Ufficiale https://chrome.google.com/webstore/detail/flow/fcpioljggfdmadgoogjlglicdffdmank
Descrizione This extension makes the webpage breathe
Dimensione del File 367 KB
Conteggio Installazioni 43
Versione Corrente beta
Ultimo Aggiornamento 2018-03-20
Data di Pubblicazione 2018-03-20
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore http://analogue.ai
Tipo di Pagamento free
Lingue Supportate 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\/"
    ]
}