Examine source code of BrowserChef

Inspect and view changes in BrowserChef 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BrowserChef",
  "description": "Workflow automations for your browser. Automate your your browsing experience with BrowserChef.",
  "version": "1.1.5",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "minimum_chrome_version": "90",
  "web_accessible_resources": [
    {
      "resources": [
        "/content-frame.html",
        "/content-sandbox.html",
        "/icons/32.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "sandbox": {
    "pages": [
      "/content-sandbox.html"
    ]
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "scripting",
    "storage",
    "unlimitedStorage",
    "notifications",
    "clipboardWrite",
    "webNavigation",
    "alarms",
    "downloads",
    "debugger",
    "sidePanel"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "BrowserChef",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.browserchef.com/*",
        "https://browserchef.com/*"
      ],
      "js": [
        "content-scripts/website.js"
      ]
    }
  ]
}