URL Viewer

URL Viewer

Chrome extension that allow you to view an html page without opening a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "URL Viewer",
  "description": "Chrome extension that allow you to view an html page without opening a new tab.",
  "version": "0.1.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "main.html",
    "default_icon": {
      "16": "logo.png",
      "24": "logo.png",
      "32": "logo.png"
    }
  },
  "default_parameters": {
    "url": "https://www.example.com",
    "width": 500,
    "height": 300
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  }
}