Better IFTTT UI

Makes the IFTTT UI more usable on desktop

Cos'è Better IFTTT UI?

Better IFTTT UI è un'estensione di Chrome sviluppata da burkybang, e la sua funzione principale è "Makes the IFTTT UI more usable on desktop".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Better IFTTT UI

Scarica i file di estensione Better IFTTT UI 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

                        This is a work in progress to make the IFTTT UI better on desktop.

This project is open source. If you'd like to contribute, please do so. I would love for this to be a community project.

Some Significant Modifications:
- Everything is smaller
- Header bar is fixed to the top of the screen while scrolling
- Navigation menu is always visible and expanded horizontally across header
- Some buttons such as Back and Settings are also fixed while scrolling

Source Code:
https://github.com/burkybang/Better-IFTTT-UI

Firefox Version:
https://addons.mozilla.org/en-US/firefox/addon/better-ifttt-ui                    

Informazioni di Base sull'Estensione

Nome Better IFTTT UI Better IFTTT UI
ID diopohabmpmmpdabhghdpjnkhlicfjnp
URL Ufficiale https://chrome.google.com/webstore/detail/better-ifttt-ui/diopohabmpmmpdabhghdpjnkhlicfjnp
Descrizione Makes the IFTTT UI more usable on desktop
Dimensione del File 12.51 KB
Conteggio Installazioni 480
Versione Corrente 1.7.1
Ultimo Aggiornamento 2020-01-09
Data di Pubblicazione 2020-01-04
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore burkybang
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://burkybang.com/extensions/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better IFTTT UI",
    "version": "1.7.1",
    "description": "Makes the IFTTT UI more usable on desktop",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "https:\/\/*.ifttt.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.ifttt.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "css\/*"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}