Examine source code of Naver English Dictionary (Unofficial)

Inspect and view changes in Naver English Dictionary (Unofficial) 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": "Naver English Dictionary (Unofficial)",
  "version": "1.1.6",
  "description": "찾고싶은 영어 단어를 선택하면 네이버 사전 팝업을 띄워줍니다.",
  "icons": {
    "48": "icons/icon.png",
    "96": "icons/icon@2x.png"
  },
  "background": {
    "scripts": [
      "config.js",
      "bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "config.js",
        "handler.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "dict.html"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/ic_mode_std.png",
    "default_title": "Naver English Dictionary (Unofficial)",
    "default_area": "navbar"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "commands": {
    "toggle-mode": {
      "suggested_key": {
        "default": "Ctrl+Shift+V"
      },
      "description": "모드를 전환합니다"
    }
  },
  "permissions": [
    "storage",
    "webRequest",
    "*://m.endic.naver.com/*",
    "*://endic.naver.com/*",
    "*://en.dict.naver.com/*"
  ],
  "applications": {
    "gecko": {
      "id": "jid0-4NyOrh90OO8ezy2B2j9O4zgrQdk@jetpack",
      "strict_min_version": "52.0a1"
    }
  }
}