ScreenSnip

ScreenSnip

A tool that allows you to take a screenshot of the current tab and crop it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ScreenSnip",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "A tool that allows you to take a screenshot of the current tab and crop it.",
  "browser_action": {
    "default_title": "ScreenSnip"
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "128": "images/128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "/background/background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "downloads"
  ]
}