Refined Zapier

Simplifies the Zapier interface and adds useful features

Co to jest Refined Zapier?

Refined Zapier to rozszerzenie Chrome opracowane przez Zach Waterfield, a jego główną funkcją jest „Simplifies the Zapier interface and adds useful features”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Refined Zapier

Pobierz pliki rozszerzeń Refined Zapier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Refined Zapier Refined Zapier
ID ffabbmokegdgijnjjkmaanijmpaekmoj
Oficjalny URL https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj
Opis Simplifies the Zapier interface and adds useful features
Rozmiar pliku 474 KB
Liczba instalacji 190
Aktualna Wersja 0.0.9
Ostatnia Aktualizacja 2021-05-12
Data Publikacji 2021-05-04
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Zach Waterfield
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/zlwaterfield/refined-zapier
Adres URL Strony Pomocy https://github.com/zlwaterfield/refined-zapier
Obsługiwane Języki 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": []
}