HexenNail

HexenNail

Image Viewer for Pixel Art

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HexenNail",
  "description": "Image Viewer for Pixel Art",
  "version": "1.0.1",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "icons/hexen_nail_16x16.png",
    "19": "icons/hexen_nail_19x19.png",
    "32": "icons/hexen_nail_32x32.png",
    "48": "icons/hexen_nail_48x48.png",
    "128": "icons/hexen_nail_128x128.png"
  },
  "background": {
    "scripts": [
      "js/jquery-1.9.1.min.js",
      "js/pixel_util.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/hexen_nail_19x19.png",
    "default_title": "Hexen Nail"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/pixel_tip.css",
        "css/hexen_nail.css"
      ],
      "js": [
        "js/jquery-1.9.1.min.js",
        "js/pixel_util.js",
        "js/hexen_nail.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "http://*/",
    "https://*/*",
    "contextMenus"
  ],
  "options_page": "options.html"
}