Mouse Clerk - Easy image downloader

Mouse Clerk - Easy image downloader

Allows you to organize, download and create images by simply clicking on them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mouse Clerk - Easy image downloader",
  "description": "Allows you to organize, download and create images by simply clicking on them.",
  "version": "0.9.2",
  "version_name": "Beta 9.2",
  "short_name": "MouseClerk",
  "browser_action": {
    "name": "Click to start Mouse Clerk"
  },
  "homepage_url": "http://www.studiowolfree.com",
  "permissions": [
    "activeTab",
    "downloads",
    "contextMenus",
    "storage"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "64": "img/icon.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.js",
        "js/clickListen.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/main.js"
    ]
  },
  "options_page": "html/options.html",
  "web_accessible_resources": [
    "sound/chime.mp3"
  ]
}