Refined Zapier

Simplifies the Zapier interface and adds useful features

Refined Zapier là gì?

Refined Zapier là một tiện ích mở rộng Chrome được phát triển bởi Zach Waterfield, và tính năng chính của nó là "Simplifies the Zapier interface and adds useful features".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Refined Zapier

Tải xuống các tệp mở rộng Refined Zapier 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

                        Simplifies the Zapier interface and adds useful features

Highlights:
- Folder searching
- Commit messages
- On Zap row hover show the Zap steps in a tooltip
- Improved sidebar styling
- Improved Zap list styling
- Prevention of publishing a Zap without a name
- And much more coming soon…

See the website for more info.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Refined Zapier Refined Zapier
ID ffabbmokegdgijnjjkmaanijmpaekmoj
URL Chính Thức https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj
Mô tả Simplifies the Zapier interface and adds useful features
Kích Thước Tệp 474 KB
Số Lần Cài Đặt 190
Phiên Bản Hiện Tại 0.0.9
Cập Nhật Lần Cuối 2021-05-12
Ngày Phát Hành 2021-05-04
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Zach Waterfield
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/zlwaterfield/refined-zapier
URL Trang Trợ Giúp https://github.com/zlwaterfield/refined-zapier
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Refined Zapier",
    "version": "0.0.9",
    "description": "Simplifies the Zapier interface and adds useful features",
    "homepage_url": "https:\/\/github.com\/zlwaterfield\/refined-zapier",
    "manifest_version": 2,
    "minimum_chrome_version": "88",
    "permissions": [
        "storage",
        "activeTab",
        "https:\/\/zapier.com\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "optional_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "128": "icon.png"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "build\/browser-polyfill.js",
            "build\/background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/zapier.com\/*"
            ],
            "css": [
                "build\/refined-zapier.css"
            ],
            "js": [
                "build\/browser-polyfill.js",
                "build\/refined-zapier.js"
            ]
        }
    ],
    "web_accessible_resources": []
}