Refined Zapier
Simplifies the Zapier interface and adds useful features
什麼是Refined Zapier?
Refined Zapier是由Zach Waterfield開發的Chrome擴展程式,該擴展的主要功能是“Simplifies the Zapier interface and adds useful features”。
擴展截圖
下載Refined Zapier擴展crx文件
下載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 |
ID | ffabbmokegdgijnjjkmaanijmpaekmoj |
官方網址 | 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": [] } |