Refined Zapier

Simplifies the Zapier interface and adds useful features

Refined Zapierとは何ですか?

Refined ZapierはZach Waterfieldによって開発されたChromeの拡張機能で、その主な機能は「Simplifies the Zapier interface and adds useful features」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Refined Zapier拡張機能のCRXファイルをダウンロード

Refined Zapier拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Refined Zapier Refined Zapier
ID ffabbmokegdgijnjjkmaanijmpaekmoj
公式URL https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj
説明 Simplifies the Zapier interface and adds useful features
ファイルサイズ 474 KB
インストール数 190
現在のバージョン 0.0.9
最終更新日 2021-05-12
公開日 2021-05-04
評価 5.00/5 合計 3 レビュー
開発者 Zach Waterfield
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/zlwaterfield/refined-zapier
ヘルプページのURL https://github.com/zlwaterfield/refined-zapier
対応言語 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": []
}