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. 扩展基本信息
| 名称 | |
| 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": []
} | |