PrintShot : Screen capture, annotate & share

PrintShot : Screen capture, annotate & share

Extension allows user to capture browser window screenshot & share them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PrintShot : Screen capture, annotate & share",
  "version": "1.0.3",
  "commands": {
    "visible_screenshot": {
      "description": "visible screenshot"
    },
    "entire_page_screenshot": {
      "description": "Entire Page Screenshot"
    }
  },
  "homepage_url": "http://scrgrb.in/",
  "manifest_version": 2,
  "description": "Extension allows user to capture browser window screenshot & share them",
  "icons": {
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png",
    "256": "images/icon256.png"
  },
  "background": {
    "scripts": [
      "libs/md5.js",
      "libs/jquery.js",
      "js/ext.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/browseraction.png",
    "default_title": "PrintShot : Screen capture, annotate & share"
  },
  "web_accessible_resources": [
    "/images/*.png",
    "/libs/jquery.js"
  ],
  "offline_enabled": true,
  "default_locale": "en",
  "permissions": [
    "activeTab"
  ],
  "optional_permissions": [
    "desktopCapture"
  ]
}