Examine source code of Glossary

Inspect and view changes in Glossary 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",
  "name": "Glossary",
  "manifest_version": 2,
  "version": "0.4.01",
  "description": "オフラインで爆速検索が可能な単語辞書",
  "browser_action": {
    "default_title": "Glossary"
  },
  "web_accessible_resources": [
    "components/panel/*.*",
    "components/card/*.*",
    "app/*.*",
    "static/icon.png",
    "static/firebase/*.*"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "120": "static/icon.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "css": [
        "app/content_scripts.css"
      ],
      "js": [
        "components/panel/Panel.js",
        "components/card/Card.js",
        "app/content_scripts.js",
        "app/dict_src.js",
        "app/dict.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'"
}