Examine source code of DC Radio

Inspect and view changes in DC Radio 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",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.0.0",
  "default_locale": "ko",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "res/icon_128.png",
      "256": "res/icon_256.png"
    }
  },
  "icons": {
    "16": "res/icon_16.png",
    "32": "res/icon_32.png",
    "128": "res/icon_128.png",
    "256": "res/icon_256.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://gall.dcinside.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "tts",
    "idle",
    "storage",
    "power"
  ]
}