Devices Showcase

Devices Showcase

Small and simple extension for resizing a website and putting it inside a chosen frame (Macbook, iPad Mini and iPhone).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Devices Showcase",
  "version": "1.1.0",
  "description": "Small and simple extension for resizing a website and putting it inside a chosen frame (Macbook, iPad Mini and iPhone).",
  "action": {
    "default_icon": {
      "48": "icon.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "48": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}