Refined Zapier

Simplifies the Zapier interface and adds useful features

Qu'est-ce que Refined Zapier ?

Refined Zapier est une extension Chrome développée par Zach Waterfield, et sa fonction principale est "Simplifies the Zapier interface and adds useful features".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Refined Zapier

Téléchargez les fichiers d'extension Refined Zapier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Refined Zapier Refined Zapier
ID ffabbmokegdgijnjjkmaanijmpaekmoj
URL Officiel https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj
Description Simplifies the Zapier interface and adds useful features
Taille du Fichier 474 KB
Nombre d'Installations 190
Version Actuelle 0.0.9
Dernière Mise à Jour 2021-05-12
Date de Publication 2021-05-04
Évaluation 5.00/5 Total 3 Évaluations
Développeur Zach Waterfield
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/zlwaterfield/refined-zapier
URL de la Page d'Aide https://github.com/zlwaterfield/refined-zapier
Langues Prises en Charge 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": []
}