Redmine Plus

Redmine Plus

This Chrome and Firefox plugins adds magic to Redmine. It particularly enhances the backlog and taskboard of the Redmine Backlogs plugin.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Redmine Plus",
  "description": "Adds magic to Redmine.",
  "version": "0.11.5",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "48.0"
    }
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "libraries/jquery/jquery-2.2.3.min.js",
        "libraries/chosen/chosen.jquery.js",
        "redmine-plus_shared.js",
        "redmine-plus.js"
      ],
      "css": [
        "libraries/chosen/chosen.css",
        "redmine-plus.css"
      ],
      "runt_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "libraries/chosen/*.png",
    "tq-redmine-plus-injected-api.js"
  ]
}