Better IFTTT UI
Makes the IFTTT UI more usable on desktop
Better IFTTT UI là gì?
Better IFTTT UI là một tiện ích mở rộng Chrome được phát triển bởi burkybang, và tính năng chính của nó là "Makes the IFTTT UI more usable on desktop".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Better IFTTT UI
Tải xuống các tệp mở rộng Better IFTTT UI dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | diopohabmpmmpdabhghdpjnkhlicfjnp |
URL Chính Thức | https://chrome.google.com/webstore/detail/better-ifttt-ui/diopohabmpmmpdabhghdpjnkhlicfjnp |
Mô tả | Makes the IFTTT UI more usable on desktop |
Kích Thước Tệp | 12.51 KB |
Số Lần Cài Đặt | 480 |
Phiên Bản Hiện Tại | 1.7.1 |
Cập Nhật Lần Cuối | 2020-01-09 |
Ngày Phát Hành | 2020-01-04 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | burkybang |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://burkybang.com/extensions/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |