Browser terminal

Browser terminal

Extension that allows you to open a native shell in the browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Browser terminal",
  "version": "1.4.3",
  "description": "Extension that allows you to open a native shell in the browser",
  "icons": {
    "512": "icons/icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  },
  "permissions": [
    "nativeMessaging"
  ],
  "action": {
    "default_area": "navbar",
    "default_title": "New terminal"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/terminal.html",
        "css/terminal.css",
        "js/terminal.js",
        "icons/icon.png",
        "fonts/Fira Code Regular Nerd Font Complete Mono.ttf",
        "fonts/Fira Code Bold Nerd Font Complete Mono.ttf"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "/js/background.js"
  }
}