QUIC Indicator

QUIC Indicator

An indicator in the address bar for QUIC usage by each website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "QUIC Indicator",
  "version": "0.0.5",
  "description": "An indicator in the address bar for QUIC usage by each website.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "page_action": {
    "default_icon": {
      "19": "icon-no-quic.png"
    },
    "default_title": "No QUIC"
  },
  "permissions": [
    "tabs"
  ],
  "manifest_version": 2
}