Screenshot Tool - Screen Capture & Editor

Screenshot Tool - Screen Capture & Editor

Innovative screenshot tool lets users screen capture and edit screenshot. Full page screen capture.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "short_name": "__MSG_short_name__",
  "version": "1.0.8",
  "default_locale": "en",
  "offline_enabled": true,
  "manifest_version": 2,
  "icons": {
    "128": "images/128.png"
  },
  "background": {
    "scripts": [
      "/js/background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "unlimitedStorage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/js/lib/jquery-3.2.1.min.js",
        "/js/contentScript.js",
        "/js/share-modal.js"
      ],
      "css": [
        "/css/share-modal.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "browser_action": {
    "default_icon": "images/128.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "/css/injectable.css",
    "editor.html"
  ]
}