Webpage Capture and Paint

Webpage Capture and Paint

Capture web pages, annotate right inside your browser. | スクリーンショットとお絵かきと保存とこれ一つで。画面をキャプチャーして、線・矢印・矩形・文字などの描き込みを行いJPEG形式で保存することが可能です。

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Webpage Capture and Paint",
  "version": "1.1.5",
  "manifest_version": 2,
  "description": "Capture web pages, annotate right inside your browser. | スクリーンショットとお絵かきと保存とこれ一つで。画面をキャプチャーして、線・矢印・矩形・文字などの描き込みを行いJPEG形式で保存することが可能です。",
  "offline_enabled": true,
  "icons": {
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon38.png",
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.js",
        "js/jquery-ui.js",
        "js/screenshot.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.svg",
    "css/jqueryui.css",
    "css/images/*.png"
  ],
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "tabs",
    "activeTab",
    "storage",
    "unlimitedStorage",
    "background",
    "http://*/*",
    "https://*/*"
  ]
}