Wildfire
Record browser actions then replay immediately. Craft your own custom automation workflows.
Τι είναι το Wildfire;
Το Wildfire είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://wildfire.ai, και η κύρια λειτουργία του είναι "Record browser actions then replay immediately. Craft your own custom automation workflows.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Wildfire
Λήψη αρχείων επέκτασης Wildfire σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The Wildfire extension allows you to record your actions on the pages you visit, then replay those actions using a simulator. When actions are recorded or simulated, it produces a log which can be reviewed. You can then use the Workflow Editor to manipulate the behavior of the simulation. The extension is appropriate for those using similar automation extensions such as iMacros or for software testers using tools such as Selenium.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Wildfire |
ID | djhgeeodemlfdpmcccdekfalbhllcoim |
Επίσημο URL | https://chromewebstore.google.com/detail/wildfire/djhgeeodemlfdpmcccdekfalbhllcoim |
Περιγραφή | Record browser actions then replay immediately. Craft your own custom automation workflows. |
Μέγεθος Αρχείου | 23.27 MB |
Αριθμός Εγκαταστάσεων | 27,812 |
Τρέχουσα Έκδοση | 1.3.10 |
Τελευταία Ενημέρωση | 2020-05-17 |
Ημερομηνία Δημοσίευσης | 2020-05-17 |
Αξιολόγηση | 3.72/5 Συνολικά 90 Αξιολογήσεις |
Προγραμματιστής | https://wildfire.ai |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://wildfire.ai/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://wildfire.ai/#section-faqs |
URL της Σελίδας Πολιτικής Απορρήτου | http://files.ian.mn/privacy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wildfire", "short_name": "Wildfire", "version": "1.3.10", "manifest_version": 2, "author": "wildfire.ai", "description": "Record browser actions then replay immediately. Craft your own custom automation workflows.", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "commands": { "stop-simulation": { "suggested_key": { "default": "Ctrl+Shift+0" }, "description": "Stop Simulation", "global": true }, "play-workflow-1": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "MacCtrl+Shift+1" }, "description": "Play Favorited Workflow #1" }, "play-workflow-2": { "suggested_key": { "default": "Ctrl+Shift+2", "mac": "MacCtrl+Shift+2" }, "description": "Play Favorited Workflow #2" }, "play-workflow-3": { "description": "Play Favorited Workflow #3" }, "run-current-workflow": { "suggested_key": { "default": "Ctrl+Shift+9", "mac": "MacCtrl+Shift+9" }, "description": "Play Current Workflow" } }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "tesseract\/tesseract.js", "jquery-2.2.4.min.js", "main.js", "aes.js", "exprparse.js", "fuzzyset\/fuzzyset.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "match_about_blank": true, "js": [ "jquery-2.2.4.min.js", "content.js" ], "all_frames": true } ], "browser_action": { "browser_style": false, "default_icon": { "16": "icon-16.png", "32": "icon-32.png" }, "default_popup": "popup.html" }, "permissions": [ "alarms", "clipboardRead", "clipboardWrite", "contextMenus", "nativeMessaging", "browsingData", "proxy", "webRequest", "webRequestBlocking", "cookies", "tabs", "webNavigation", "storage", "tabCapture", "notifications", "http:\/\/*\/", "https:\/\/*\/", " |