GitLab Notifications

GitLab Notifications

GitLab Notifications Center

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_desc__",
  "version": "1.3.4",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "css": [
        "contentscript.css"
      ],
      "matches": [
        "https://gitlab.com/*",
        "*://*/*"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_icon": "img/gitlab.notification.png",
    "default_title": "__MSG_extension_name__"
  },
  "options_page": "options.html",
  "icons": {
    "16": "img/gitlab.notification.png",
    "24": "img/gitlab.notification.png",
    "32": "img/gitlab.notification.png",
    "48": "img/gitlab.notification.png",
    "128": "img/gitlab.notification.png"
  },
  "permissions": [
    "tabs",
    "notifications",
    "https://gitlab.com/*",
    "*://*/*"
  ],
  "web_accessible_resources": [],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en_US",
  "manifest_version": 2
}