CPK

CPK

CPK. This extension helps coders run html code on the web. WARNING: it doesn't work properly on a tablet or mobile phone

Merlin
Additional files are visible only to premium users

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"
}