Wildfire

Record browser actions then replay immediately. Craft your own custom automation workflows.

Wildfire란 무엇입니까?

Wildfire은(는) https://wildfire.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record browser actions then replay immediately. Craft your own custom automation workflows."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Wildfire 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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:\/\/*\/",
        "",
        "unlimitedStorage",
        "debugger"
    ],
    "web_accessible_resources": [
        "embedded.js"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/wildfire.ai\/*",
            "https:\/\/www.wildfire.ai\/*",
            "https:\/\/api.wildfire.ai\/*",
            "https:\/\/cloud.wildfire.ai\/*"
        ]
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "48.0"
        }
    },
    "minimum_opera_version": "33.0",
    "offline_enabled": true
}