Photo Gallerify

Photo Gallerify

A simple extension that creates a gallery from a page that contains photos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ExtensionName__",
  "description": "__MSG_ExtensionDesc__",
  "version": "1.1.1",
  "manifest_version": 2,
  "default_locale": "en",
  "homepage_url": "http://tuhoojabotti.com",
  "minimum_chrome_version": "25",
  "permissions": [
    "<all_urls>",
    "tabs"
  ],
  "icons": {
    "512": "gfx/512.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "19": "gfx/19.png",
      "38": "gfx/38.png",
      "512": "gfx/512.png"
    },
    "default_title": "__MSG_Gallerify__"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "ftp://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "vendor/jquery.js",
        "vendor/masonry.js",
        "js/detectors.js",
        "js/content.js"
      ],
      "css": [
        "gallery.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}