Webeyez

Webeyez

With the Webeyez chrome extension you can easily measure your e-commerce website's Google core vitals. Google Web Vitals is an…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Webeyez",
  "version": "1.0.3",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "images/logotypes/16x16.png",
    "48": "images/logotypes/48x48.png",
    "128": "images/logotypes/48x48.png"
  },
  "browser_action": {
    "default_title": "Webeyez"
  },
  "web_accessible_resources": [
    "alert.js",
    "images/Logo.png",
    "images/spinner.svg",
    "images/loadPage/arrowUp.png",
    "images/loadPage/globalTime.png",
    "images/commonIcon/linkedIn.png",
    "images/commonIcon/logout.png",
    "images/commonIcon/ssoKey.png",
    "images/commonIcon/playIcon.png",
    "images/commonIcon/copyIcon.png",
    "images/commonIcon/alertBell.png",
    "images/commonIcon/archerIcon.png",
    "images/commonIcon/plateIcon.png",
    "images/commonIcon/uptimeIcon.png",
    "images/commonIcon/anomaliesIcon.png",
    "images/logotypes/48x48.png",
    "images/tabs/lock.png",
    "images/trayLogo.png",
    "css/main.css",
    "fonts/Poppins-Regular.woff2",
    "fonts/Poppins-Medium.woff",
    "fonts/Poppins-Regular.woff",
    "fonts/Poppins-Medium.woff2",
    "fonts/Poppins-Regular.woff2",
    "fonts/Poppins-SemiBold.ttf",
    "fonts/Roboto-Regular.ttf",
    "fonts/Roboto-Medium.ttf"
  ],
  "permissions": [
    "storage",
    "http://*/",
    "https://*/",
    "webRequest"
  ]
}