Save Page State

Save Page State

Chrome extension to save a state of a page for remote analysis

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Save Page State",
  "version": "1.0.1",
  "description": "Chrome extension to save a state of a page for remote analysis",
  "manifest_version": 2,
  "icons": {
    "128": "images/icon.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "pageCapture",
    "*://*/*"
  ]
}