Examine source code of Troll Buster (악플판독기)

Inspect and view changes in Troll Buster (악플판독기) 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": "Troll Buster (악플판독기)",
  "version": "1.1",
  "permissions": [
    "contextMenus",
    "activeTab",
    "sidePanel",
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "html/popup.html"
  },
  "side_panel": {
    "default_path": "html/sidepanel.html",
    "default_width": 400
  },
  "options_page": "html/options.html",
  "icons": {
    "16": "img/troll-buster-bi.png",
    "48": "img/troll-buster-bi.png",
    "128": "img/troll-buster-bi.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "html/*",
        "img/*",
        "js/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}