OME

OME

OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OME",
  "description": "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.",
  "version": "0.6.0",
  "permissions": [
    "contextMenus",
    "tabs",
    "activeTab",
    "http://127.0.0.1:8989/*"
  ],
  "icons": {
    "16": "icon-16.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://chromium-review.googlesource.com/*"
      ],
      "js": [
        "gr-content.js"
      ]
    },
    {
      "matches": [
        "https://cs.chromium.org/chromium/src/*"
      ],
      "js": [
        "cs-content.js"
      ]
    },
    {
      "matches": [
        "https://codereview.chromium.org/*"
      ],
      "js": [
        "cr-content.js"
      ]
    }
  ],
  "manifest_version": 2
}