ScreenClip - Screenshot, Comment & Annotate

ScreenClip - Screenshot, Comment & Annotate

Take screenshots, add annotations & comments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ScreenClip - Screenshot, Comment & Annotate",
  "description": "Take screenshots, add annotations & comments",
  "version": "10000.1.0.16",
  "icons": {
    "16": "badges/normal/Icon16.png",
    "48": "badges/normal/Icon48.png",
    "128": "badges/normal/Icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "badges/normal/Icon16.png",
      "48": "badges/normal/Icon48.png",
      "128": "badges/normal/Icon128.png"
    },
    "default_title": "ScreenClip",
    "default_popup": ""
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "commands": {
    "capture-area-command": {
      "suggested_key": {
        "windows": "Ctrl+Shift+C",
        "mac": "Alt+C",
        "chromeos": "Ctrl+Shift+C",
        "linux": "Ctrl+Shift+C"
      },
      "description": "Clipping Tool"
    },
    "capture-tab-command": {
      "suggested_key": {
        "windows": "Ctrl+Shift+V",
        "mac": "Alt+V",
        "chromeos": "Ctrl+Shift+V",
        "linux": "Ctrl+Shift+V"
      },
      "description": "Visible area"
    },
    "capture-page-command": {
      "suggested_key": {
        "windows": "Ctrl+Shift+F",
        "mac": "Alt+F",
        "chromeos": "Ctrl+Shift+F",
        "linux": "Ctrl+Shift+F"
      },
      "description": "Full page"
    }
  },
  "externally_connectable": {
    "matches": [
      "*://*.screenclip.com/*",
      "https://screen.link/*",
      "*://*.screenclip-website-test.firebaseapp.com/*",
      "http://localhost:5000/*",
      "http://localhost:5005/*",
      "http://localhost:5006/*",
      "*://screenclip-website-test.firebaseapp.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "insides/permanent/outside.css"
      ],
      "js": [
        "insides/permanent/browser-polyfill.min.js",
        "insides/content/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "insides/*",
    "imgcopy.html"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "tabCapture",
    "tabs",
    "<all_urls>",
    "notifications",
    "clipboardWrite",
    "unlimitedStorage"
  ]
}