RunJS

RunJS

前端代码在线编辑在线运行,浏览技术网站随时做代码笔记。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "前端代码在线编辑在线运行,浏览技术网站随时做代码笔记。",
  "version": "1.1.16",
  "manifest_version": 3,
  "name": "RunJS",
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "16": "icon-16.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "contentScript.css"
      ],
      "run_at": "document_start"
    }
  ],
  "devtools_page": "devtools.html",
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": []
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}