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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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": []
}