CheckPoint

CheckPoint

Save any part of a page any moment in time.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CheckPoint",
  "description": "Save any part of a page any moment in time.",
  "version": "0.56",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "128": "checkpoint_128.png"
  },
  "permissions": [
    "storage",
    "scripting",
    "tabs",
    "notifications",
    "contextMenus"
  ],
  "host_permissions": [
    "http://www.blogger.com/",
    "http://*.google.com/",
    "http://*/",
    "https://*/"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "commands": {
    "save_checkpoint": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Ctrl+Shift+Y",
        "chromeos": "Ctrl+Shift+Y",
        "linux": "Ctrl+Shift+Y"
      },
      "description": "Save checkpoint"
    },
    "save_checkpoint_alt": {
      "suggested_key": {
        "windows": "Alt+Shift+Y",
        "mac": "Alt+Shift+Y",
        "chromeos": "Alt+Shift+Y",
        "linux": "Alt+Shift+Y"
      },
      "description": "Save checkpoint"
    }
  }
}