Better IFTTT UI

Makes the IFTTT UI more usable on desktop

什麼是Better IFTTT UI?

Better IFTTT UI是由burkybang開發的Chrome擴展程式,該擴展的主要功能是“Makes the IFTTT UI more usable on desktop”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Better IFTTT UI擴展crx文件

下載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                    

擴展基本資訊

名稱 Better IFTTT UI Better IFTTT UI
ID diopohabmpmmpdabhghdpjnkhlicfjnp
官方網址 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"
    }
}