SSS simple screenShot

SSS simple screenShot

This app will take a very simple screen shot. To complete the operation in a single click. The input of the file name to save is…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon_128.png",
    "default_title": "__MSG_extName__"
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "__MSG_description__",
  "icons": {
    "16": "images/icon_016.png",
    "48": "images/icon_048.png",
    "128": "images/icon_128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "default_locale": "ja",
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>"
  ],
  "version": "0.2.1"
}