Refined Zapier

Simplifies the Zapier interface and adds useful features

Was ist Refined Zapier?

Refined Zapier ist eine Chrome-Erweiterung, die von Zach Waterfield entwickelt wurde, und ihr Hauptmerkmal ist "Simplifies the Zapier interface and adds useful features".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Refined Zapier-Erweiterungs-CRX-Datei herunterladen

Laden Sie Refined Zapier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Refined Zapier Refined Zapier
ID ffabbmokegdgijnjjkmaanijmpaekmoj
Offizielle URL https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj
Beschreibung Simplifies the Zapier interface and adds useful features
Dateigröße 474 KB
Installationsanzahl 190
Aktuelle Version 0.0.9
Letztes Update 2021-05-12
Veröffentlichungsdatum 2021-05-04
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Zach Waterfield
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/zlwaterfield/refined-zapier
Hilfeseite URL https://github.com/zlwaterfield/refined-zapier
Unterstützte Sprachen 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": []
}