sourceditor

sourceditor

A simple and minimal extension that enables you to edit the source code of any website and save it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "sourceditor",
  "description": "A simple and minimal extension that enables you to edit the source code of any website and save it.",
  "version": "1.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "icons": {
    "48": "citadel.jpg",
    "128": "icon.png"
  },
  "permissions": [],
  "web_accessible_resources": [
    "*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}