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": []
}