Refined Zapier
Simplifies the Zapier interface and adds useful features
¿Qué es Refined Zapier?
Refined Zapier es una extensión de Chrome desarrollada por Zach Waterfield, y su función principal es "Simplifies the Zapier interface and adds useful features".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Refined Zapier
Descarga archivos de extensión Refined Zapier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Refined Zapier |
ID | ffabbmokegdgijnjjkmaanijmpaekmoj |
URL Oficial | https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj |
Descripción | Simplifies the Zapier interface and adds useful features |
Tamaño del Archivo | 474 KB |
Cantidad de Instalaciones | 190 |
Versión Actual | 0.0.9 |
Última Actualización | 2021-05-12 |
Fecha de Publicación | 2021-05-04 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | Zach Waterfield |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/zlwaterfield/refined-zapier |
URL de la Página de Ayuda | https://github.com/zlwaterfield/refined-zapier |
Idiomas Soportados | 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": [] } |