Better IFTTT UI

Makes the IFTTT UI more usable on desktop

Was ist Better IFTTT UI?

Better IFTTT UI ist eine Chrome-Erweiterung, die von burkybang entwickelt wurde, und ihr Hauptmerkmal ist "Makes the IFTTT UI more usable on desktop".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Better IFTTT UI-Erweiterungs-CRX-Datei herunterladen

Laden Sie Better IFTTT UI-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Better IFTTT UI Better IFTTT UI
ID diopohabmpmmpdabhghdpjnkhlicfjnp
Offizielle URL https://chrome.google.com/webstore/detail/better-ifttt-ui/diopohabmpmmpdabhghdpjnkhlicfjnp
Beschreibung Makes the IFTTT UI more usable on desktop
Dateigröße 12.51 KB
Installationsanzahl 480
Aktuelle Version 1.7.1
Letztes Update 2020-01-09
Veröffentlichungsdatum 2020-01-04
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler burkybang
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://burkybang.com/extensions/privacy
Unterstützte Sprachen 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"
    }
}