view-current-source

view-current-source

View the source code of a page at its current state.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "view-current-source",
  "version": "0.3.2",
  "minimum_chrome_version": "18.0",
  "description": "View the source code of a page at its current state.",
  "icons": {
    "16": "res/logo16.png",
    "128": "res/logo128.png"
  },
  "background": {
    "scripts": [
      "script/background.js"
    ]
  },
  "options_page": "options.htm",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "script/script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "content_security_policy": "script-src 'self' https://platform.twitter.com https://apis.google.com; object-src 'self'"
}