Refined Zapier
Simplifies the Zapier interface and adds useful features
Vad är Refined Zapier?
Refined Zapier är en Chrome-tillägg utvecklad av Zach Waterfield, och dess huvudfunktion är "Simplifies the Zapier interface and adds useful features".
Tilläggsskärmbilder
Ladda ner Refined Zapier-förlängningens CRX-fil
Ladda ner Refined Zapier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Refined Zapier |
ID | ffabbmokegdgijnjjkmaanijmpaekmoj |
Officiell webbadress | https://chromewebstore.google.com/detail/refined-zapier/ffabbmokegdgijnjjkmaanijmpaekmoj |
Beskrivning | Simplifies the Zapier interface and adds useful features |
Filstorlek | 474 KB |
Antal Installationer | 190 |
Aktuell Version | 0.0.9 |
Senast Uppdaterad | 2021-05-12 |
Publiceringsdatum | 2021-05-04 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | Zach Waterfield |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/zlwaterfield/refined-zapier |
Hjälpsida URL | https://github.com/zlwaterfield/refined-zapier |
Stödda Språk | 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": [] } |