Inline Manual Authoring tool

Inline Manual Authoring tool

Inline Manual Chrome Authoring tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Inline Manual Authoring tool",
  "version": "1.44.1",
  "description": "Inline Manual Chrome Authoring tool",
  "manifest_version": 2,
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "storage",
    "*://*/*"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "name": "Click to toggle Inline Manual authoring toolbar"
  }
}