Design Overlay

Design Overlay

This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Design Overlay",
  "description": "This extension will allow you overlay an image on the screen, such as a page design so you can compare by the pixel.",
  "version": "0.0.0.3",
  "icons": {
    "16": "/images/image_16.png",
    "32": "/images/image_32.png",
    "48": "/images/image_64.png",
    "128": "/images/image_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Right click and select an image in options!"
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "storage"
  ]
}