instaGrab Photos

instaGrab Photos

Single click grab Instagram, Facebook, and Web Pictures. Download and theme them as Instagram Background Image

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "instaGrab Photos",
  "short_name": "Grab Photos from Instagram, Facebook, and Web",
  "version": "0.0.0.24",
  "description": "Single click grab Instagram, Facebook, and Web Pictures. Download and theme them as Instagram Background Image",
  "manifest_version": 2,
  "browser_action": {
    "default_title": "Theme, Download, and Share Photos",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/jsCommon.js",
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instagram.com/*"
      ],
      "js": [
        "js/jquery.js",
        "js/jsCommon.js",
        "content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "js/jquery.js",
    "img/icon16.png",
    "img/icon48.png",
    "img/icon128.png"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "notifications",
    "activeTab",
    "downloads"
  ]
}