Resurface

Resurface

Replace editable page fields with a pop-out Monaco (VS Code) editor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Resurface",
  "version": "1.4.4",
  "description": "Replace editable page fields with a pop-out Monaco (VS Code) editor",
  "icons": {
    "16": "assets/resurface-logo-16.png",
    "48": "assets/resurface-logo-48.png",
    "128": "assets/resurface-logo-128.png"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "action": {
    "default_title": "Click me to highlight Resurface targets on this page"
  },
  "options_page": "assets/options.html",
  "permissions": [
    "scripting",
    "tabs",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}