Gitlab resolve code owners

Gitlab resolve code owners

In Gitlab - for any merge request, it switches out the Code Owners from the file pattern match to the actual owners.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gitlab resolve code owners",
  "description": "In Gitlab - for any merge request, it switches out the Code Owners from the file pattern match to the actual owners.",
  "version": "1.0.0.6",
  "permissions": [
    "scripting",
    "webNavigation",
    "storage"
  ],
  "background": {
    "service_worker": "codeowners_sw.js"
  },
  "host_permissions": [
    "https://gitlab.com/*"
  ],
  "manifest_version": 3,
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "icons": {
    "32": "icons/code_owners_32.png",
    "128": "icons/code_owners_128.png"
  }
}