Refined Zapier
Simplifies the Zapier interface and adds useful features
Refined Zapier क्या है?
Refined Zapier Zach Waterfield द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simplifies the Zapier interface and adds useful features"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Refined Zapier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Refined Zapier |
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": [] } |