Page Info

Page Info

Show the page info and the canonical URL, Copy as Markdown, and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Page Info",
  "description": "Show the page info and the canonical URL, Copy as Markdown, and more",
  "version": "1.0.2",
  "manifest_version": 3,
  "homepage_url": "https://github.com/knu/page-info",
  "action": {
    "default_popup": "index.html",
    "default_title": "Page Info"
  },
  "icons": {
    "16": "src/images/icon16.png",
    "32": "src/images/icon32.png",
    "48": "src/images/icon48.png",
    "128": "src/images/icon128.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content.ts-loader-73b61868.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "match_origin_as_fallback": true,
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+I",
        "mac": "Command+Shift+I"
      }
    },
    "copyMarkdownLink": {
      "description": "Copy a Markdown link to the current page",
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      }
    },
    "visitCanonicalURL": {
      "description": "Visit the canonical URL of the current page if available",
      "suggested_key": {
        "default": "Ctrl+Shift+Home",
        "mac": "Command+Shift+Home"
      }
    }
  },
  "permissions": [
    "activeTab",
    "scripting",
    "webNavigation",
    "contextMenus",
    "alarms",
    "clipboardWrite",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/clipboard-2535336e.js",
        "assets/content.ts-af1988f8.js"
      ],
      "use_dynamic_url": true
    }
  ]
}