Pretty Print

Pretty Print

Create better site and content screenshots

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pretty Print",
  "description": "Create better site and content screenshots",
  "version": "0.2.0",
  "action": {
    "default_icon": {
      "16": "icon-16-light.png",
      "32": "icon-32-light.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "128": "128.png"
  },
  "permissions": [
    "activeTab"
  ]
}