{
"update_url": "https://clients2.google.com/service/update2/crx",

  "manifest_version": 3,
  "name": "Link Redirect Trace",
  "short_name": "Redirect Trace",
  "description": "The all-in-one redirect path analyzer. It also analyzes protocol headers, REL-canonicals, robots.txt, backlink power, and trust!",
  "version": "1.1.5.27",
  "version_name": "1.1.5.27",

  "icons": {
    "19": "/img/icon19.png",
    "38": "/img/icon38.png",
    "128": "/img/icon128.png",
    "256": "/img/icon256.png"
  },

  "action": {
    "default_icon": "/img/icon19.png",
    "default_popup": "/html/popup.html"
  },

  "background": {
    "service_worker": "sw_background.js"
  },

  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/cs-page.js"
      ],
      "run_at": "document_start"
    }
  ],

  "web_accessible_resources" : [
    {
      "resources": ["/img/*"],
      "matches": ["http://*/*", "https://*/*"]
    }
  ],

  "permissions": [
    "activeTab",
    "tabs",
    "webRequest",
    "webNavigation",
    "storage"
  ],

  "host_permissions": [
    "<all_urls>"
  ]

}
