Refined Zapier
Simplifies the Zapier interface and adds useful features
O que é Refined Zapier?
Refined Zapier é uma extensão do Chrome desenvolvida por Zach Waterfield, e sua principal característica é "Simplifies the Zapier interface and adds useful features".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Refined Zapier
Baixe arquivos de extensão Refined Zapier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Refined Zapier |
ID | ffabbmokegdgijnjjkmaanijmpaekmoj |
URL Oficial | https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj |
Descrição | Simplifies the Zapier interface and adds useful features |
Tamanho do Arquivo | 474 KB |
Contagem de Instalações | 190 |
Versão Atual | 0.0.9 |
Última Atualização | 2021-05-12 |
Data de Publicação | 2021-05-04 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Zach Waterfield |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/zlwaterfield/refined-zapier |
URL da Página de Ajuda | https://github.com/zlwaterfield/refined-zapier |
Idiomas Suportados | 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": [] } |