Jenkins Helper

Jenkins Helper

Monitor Jenkins build state and node state, and provide some convenient services.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDesc__",
  "author": "LiYing",
  "homepage_url": "https://github.com/liying2008/jenkins-helper",
  "version": "2.3.0",
  "minimum_chrome_version": "55",
  "default_locale": "en",
  "omnibox": {
    "keyword": "jk"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_extShortName__ - __MSG_extDesc__"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "notifications",
    "tabs",
    "downloads"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_end"
    }
  ]
}