Prevue Popup

Prevue Popup

Prevue Popup aims at increasing your productivity by allowing you to preview any URL inside the current page, without opening it in…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_title": "Prevue Popup Options",
    "default_popup": "options.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "prevue.css"
      ],
      "js": [
        "prevue.js"
      ],
      "all_frames": true
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "disable-csp",
        "enabled": false,
        "path": "rules.json"
      }
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "512": "pp.png"
  },
  "manifest_version": 3,
  "name": "Prevue Popup",
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "history",
    "storage",
    "scripting",
    "declarativeNetRequest"
  ],
  "version": "0.4.8",
  "web_accessible_resources": [
    {
      "resources": [
        "options.html",
        "prevue.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}