HTML Editor

HTML Editor

This extension allows you to easily mock-up changes to your HTML

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HTML Editor",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "This extension allows you to easily mock-up changes to your HTML",
  "homepage_url": "http://github.com/elunico",
  "icons": {
    "16": "icons/HtmlEditor16.png",
    "48": "icons/HtmlEditor48.png",
    "128": "icons/HtmlEditor128.png"
  },
  "default_locale": "en",
  "permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "css": [
        "src/inject/inject.css"
      ]
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}