Refined Zapier

Simplifies the Zapier interface and adds useful features

What is Refined Zapier?

Refined Zapier is a Chrome extension developed by Zach Waterfield, and its main feature is "Simplifies the Zapier interface and adds useful features".

Extension Screenshots

screenshot
screenshot
screenshot

Download Refined Zapier Extension CRX File

Download Refined Zapier extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Refined Zapier Refined Zapier
ID ffabbmokegdgijnjjkmaanijmpaekmoj
Official URL https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj
Description Simplifies the Zapier interface and adds useful features
File Size 474 KB
Installation Count 190
Current Version 0.0.9
Last Updated 2021-05-12
Publish Date 2021-05-04
Rating 5.00/5 Total 3 Ratings
Developer Zach Waterfield
Email [email protected]
Payment Type free
Extension Website https://github.com/zlwaterfield/refined-zapier
Help Page URL https://github.com/zlwaterfield/refined-zapier
Supported Languages 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": []
}