Examine source code of Bilingual Reader

Inspect and view changes in Bilingual Reader 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
{
  "manifest_version": 3,
  "name": "Bilingual Reader",
  "description": "Split screen and read translated content side by side",
  "version": "1.1.1",
  "icons": {
    "16": "icons/simple-icon-16.png",
    "32": "icons/simple-icon-32.png",
    "48": "icons/simple-icon-48.png",
    "128": "icons/simple-icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*.svg",
        "icons/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/simple-icon-16.png",
      "32": "icons/simple-icon-32.png",
      "48": "icons/simple-icon-48.png",
      "128": "icons/simple-icon-128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      }
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}