Examine source code of CPK

Inspect and view changes in CPK 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": 3,
  "name": "CPK",
  "version": "0.2",
  "author": "CPK",
  "description": "CPK. This extension helps coders run html code on the web. WARNING: it doesn't work properly on a tablet or mobile phone",
  "icons": {
    "128": "128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "popup.js"
      ],
      "css": [
        "dark.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}