Refined Gitlab By Canal+

Refined Gitlab By Canal+

Add useful features to the Gitlab interface by Canal+

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Refined Gitlab By Canal+",
  "version": "1.10.0",
  "homepage_url": "https://github.com/PaulRosset/refined-gitlab-canal",
  "description": "Add useful features to the Gitlab interface by Canal+",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": {
      "32": "icon.png"
    },
    "default_popup": "options.html",
    "default_title": "Refined Gitlab"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "https://gitlab.com/*"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://gitlab.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}