Better IFTTT UI
Makes the IFTTT UI more usable on desktop
Τι είναι το Better IFTTT UI;
Το Better IFTTT UI είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον burkybang, και η κύρια λειτουργία του είναι "Makes the IFTTT UI more usable on desktop".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Better IFTTT UI
Λήψη αρχείων επέκτασης Better IFTTT UI σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | diopohabmpmmpdabhghdpjnkhlicfjnp |
Επίσημο URL | https://chrome.google.com/webstore/detail/better-ifttt-ui/diopohabmpmmpdabhghdpjnkhlicfjnp |
Περιγραφή | Makes the IFTTT UI more usable on desktop |
Μέγεθος Αρχείου | 12.51 KB |
Αριθμός Εγκαταστάσεων | 480 |
Τρέχουσα Έκδοση | 1.7.1 |
Τελευταία Ενημέρωση | 2020-01-09 |
Ημερομηνία Δημοσίευσης | 2020-01-04 |
Αξιολόγηση | 4.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | burkybang |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
URL της Σελίδας Πολιτικής Απορρήτου | https://burkybang.com/extensions/privacy |
Υποστηριζόμενες Γλώσσες | 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" } } |