Redmine Powerkit

Redmine Powerkit

A Redmine powerkit for internal using

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.10",
  "manifest_version": 2,
  "name": "Redmine Powerkit",
  "description": "A Redmine powerkit for internal using",
  "author": "Augustine Wen",
  "permissions": [
    "*://redmine.yjtech.tw/*",
    "webRequest",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://redmine.yjtech.tw/*"
      ],
      "include_globs": [
        "*/agile/board?*",
        "*/issues?*"
      ],
      "css": [
        "css/styles.css"
      ],
      "js": [
        "js/jquery-3.4.0.slim.min.js",
        "js/fullscreen.js",
        "js/contentscript.js"
      ]
    },
    {
      "matches": [
        "https://redmine.yjtech.tw/*"
      ],
      "include_globs": [
        "*/issues/new?*"
      ],
      "js": [
        "js/jquery-3.4.0.slim.min.js",
        "js/newissue.js"
      ]
    }
  ]
}