Examine source code of CDIEXT - Chinese Dictionary Pop-Up Extension

Inspect and view changes in CDIEXT - Chinese Dictionary Pop-Up Extension 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": 2,
  "name": "CDIEXT",
  "version": "1.1",
  "description": "A pop-up dictionary extension for Chinese with Reader Function",
  "icons": {
    "128": "assets/img/icon.png"
  },
  "browser_action": {
    "default_icon": "assets/img/icon.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs",
    "contextMenus",
    "menus",
    "clipboardRead",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/js/content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "options/configure.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{07c8ffb5-ed81-463d-8771-031c90a1ad17}"
    }
  }
}