Refined Zapier

Simplifies the Zapier interface and adds useful features

Co je Refined Zapier?

Refined Zapier je rozšíření Chrome vyvinuté Zach Waterfield, a jeho hlavní funkcí je „Simplifies the Zapier interface and adds useful features“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Refined Zapier

Stáhněte si soubory rozšíření Refined Zapier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Refined Zapier Refined Zapier
ID ffabbmokegdgijnjjkmaanijmpaekmoj
Oficiální URL https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj
Popis Simplifies the Zapier interface and adds useful features
Velikost souboru 474 KB
Počet instalací 190
Aktuální Verze 0.0.9
Poslední Aktualizace 2021-05-12
Datum Vydání 2021-05-04
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Zach Waterfield
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/zlwaterfield/refined-zapier
URL Stránky Nápovědy https://github.com/zlwaterfield/refined-zapier
Podporované Jazyky 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": []
}