Redmine Wiki LiveEdit

Redmine Wiki LiveEdit

This extension add live editing features in Redmine wiki

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Redmine Wiki LiveEdit",
  "description": "This extension add live editing features in Redmine wiki",
  "version": "1.0.6",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon/icon-19.png",
    "default_title": "Enable live editing features in redmine wiki"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "19": "icon/icon-19.png",
    "48": "icon/icon-48.png",
    "128": "icon/icon-128.png"
  },
  "manifest_version": 2
}