Flake linker

Flake linker

Links to Chromium flakiness dashboard from build result pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Flake linker",
  "description": "Links to Chromium flakiness dashboard from build result pages.",
  "version": "1.11",
  "manifest_version": 2,
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "flake_linker.js"
      ],
      "matches": [
        "*://ci.chromium.org/*"
      ],
      "exclude_matches": [
        "*://ci.chromium.org/ui/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "flake_linker_new_build_page.js"
      ],
      "matches": [
        "*://ci.chromium.org/ui/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "log_scroller.js"
      ],
      "matches": [
        "*://chromium-swarm.appspot.com/*",
        "*://chrome-swarming.appspot.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs"
  ]
}