Refined Zapier
Simplifies the Zapier interface and adds useful features
Cos'è Refined Zapier?
Refined Zapier è un'estensione di Chrome sviluppata da Zach Waterfield, e la sua funzione principale è "Simplifies the Zapier interface and adds useful features".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Refined Zapier
Scarica i file di estensione Refined Zapier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | ffabbmokegdgijnjjkmaanijmpaekmoj |
| URL Ufficiale | https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj |
| Descrizione | Simplifies the Zapier interface and adds useful features |
| Dimensione del File | 474 KB |
| Conteggio Installazioni | 190 |
| Versione Corrente | 0.0.9 |
| Ultimo Aggiornamento | 2021-05-12 |
| Data di Pubblicazione | 2021-05-04 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | Zach Waterfield |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/zlwaterfield/refined-zapier |
| URL della Pagina di Aiuto | https://github.com/zlwaterfield/refined-zapier |
| Lingue Supportate | 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": []
} | |