Refined Zapier
Simplifies the Zapier interface and adds useful features
Apa itu Refined Zapier?
Refined Zapier adalah ekstensi Chrome yang dikembangkan oleh Zach Waterfield, dan fitur utamanya adalah "Simplifies the Zapier interface and adds useful features".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Refined Zapier
Unduh file ekstensi Refined Zapier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Refined Zapier |
ID | ffabbmokegdgijnjjkmaanijmpaekmoj |
URL Resmi | https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj |
Deskripsi | Simplifies the Zapier interface and adds useful features |
Ukuran File | 474 KB |
Jumlah Instalasi | 190 |
Versi Saat Ini | 0.0.9 |
Terakhir Diperbarui | 2021-05-12 |
Tanggal Publikasi | 2021-05-04 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | Zach Waterfield |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/zlwaterfield/refined-zapier |
URL Halaman Bantuan | https://github.com/zlwaterfield/refined-zapier |
Bahasa yang Didukung | 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": [] } |