Refined Zapier

Simplifies the Zapier interface and adds useful features

Что такое Refined Zapier?

Refined Zapier - это расширение Chrome, разработанное Zach Waterfield, и его основная функция - "Simplifies the Zapier interface and adds useful features".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Refined Zapier

Скачайте файлы расширений Refined Zapier в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Refined Zapier Refined Zapier
ID ffabbmokegdgijnjjkmaanijmpaekmoj
Официальный URL https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj
Описание Simplifies the Zapier interface and adds useful features
Размер файла 474 KB
Количество установок 190
Текущая Версия 0.0.9
Последнее Обновление 2021-05-12
Дата публикации 2021-05-04
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Zach Waterfield
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/zlwaterfield/refined-zapier
URL страницы помощи https://github.com/zlwaterfield/refined-zapier
Поддерживаемые языки 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": []
}