Better IFTTT UI
Makes the IFTTT UI more usable on desktop
Better IFTTT UI क्या है?
Better IFTTT UI burkybang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes the IFTTT UI more usable on desktop"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Better IFTTT UI एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |