Examine source code of Devook

Inspect and view changes in Devook 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": "Devook",
  "description": "Devook의 북마크 기능을 위한 크롬 확장프로그램 입니다.",
  "version": "1.0",
  "manifest_version": 3,
  "default_locale": "ko",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "cookies",
    "tabs"
  ],
  "host_permissions": [
    "https://api.devook.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo16.png",
      "32": "/images/logo32.png",
      "48": "/images/logo48.png",
      "128": "/images/logo128.png"
    }
  },
  "icons": {
    "16": "/images/logo16.png",
    "32": "/images/logo32.png",
    "48": "/images/logo48.png",
    "128": "/images/logo128.png"
  }
}