GBB - GitLab Board Better

GBB - GitLab Board Better

Make GitLab board better with filters, notifications and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "42.0"
    }
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GBB - GitLab Board Better",
  "version": "1.8.4",
  "description": "Make GitLab board better with filters, notifications and more",
  "manifest_version": 2,
  "content_scripts": [
    {
      "js": [
        "lib/moment.min.js",
        "lib/jquery.min.js",
        "lib/fingerprint2.min.js",
        "lib/Sortable.min.js",
        "content.js",
        "ticket-style.js"
      ],
      "matches": [
        "https://gitlab.com/*",
        "https://gitlab-board-better.com/*",
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "ticketStyles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "mainUi.html",
    "ticketStylesUi.html",
    "eventTemplate.html",
    "filterButtonTemplate.html"
  ],
  "browser_action": {
    "default_icon": "icons/logo.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "fa/css/font-awesome.css"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "tabs",
    "https://*/*"
  ],
  "icons": {
    "128": "icons/logo.png"
  }
}