Examine source code of Wildfire

Inspect and view changes in Wildfire source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Wildfire",
  "short_name": "Wildfire",
  "version": "1.3.9",
  "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",
    "bookmarks",
    "contextMenus",
    "contentSettings",
    "downloads",
    "history",
    "nativeMessaging",
    "browsingData",
    "proxy",
    "webRequest",
    "webRequestBlocking",
    "cookies",
    "tabs",
    "webNavigation",
    "storage",
    "tabCapture",
    "notifications",
    "http://*/",
    "https://*/",
    "<all_urls>",
    "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": "support@wildfire.ai",
      "strict_min_version": "48.0"
    }
  },
  "minimum_opera_version": "33.0",
  "offline_enabled": true,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}