Quick source viewer

Quick source viewer

View current page sources: HTML + Javascript + CSS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Quick source viewer",
  "short_name": "source view",
  "version": "1.4.0",
  "description": "View current page sources: HTML + Javascript + CSS",
  "permissions": [
    "<all_urls>"
  ],
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "gear19.png"
  },
  "icons": {
    "16": "gear19.png",
    "128": "gear128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "load.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "config.js",
      "bg.js"
    ]
  },
  "minimum_chrome_version": "26"
}