Click and Save

Click and Save

Click to save images. Auto Rename, Filter, and Save most pictures.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "pics/click-128.png",
    "default_popup": "popup.html",
    "default_title": "Click And Save"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "jquery-2.0.3.min.js",
        "deconstructUrl.js",
        "clickAndSave always inject.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "Click to save images. Auto Rename, Filter, and Save most pictures.",
  "icons": {
    "128": "pics/click-128.png"
  },
  "manifest_version": 2,
  "name": "Click and Save",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "tabs",
    "ftp://*/*",
    "http://*/*",
    "https://*/*",
    "clipboardWrite"
  ],
  "version": "1.7.9",
  "web_accessible_resources": [
    "/pics/save2-16.png",
    "/pics/save2-32.png",
    "jquery-2.0.3.min.map"
  ]
}