PE Center

PE Center

PE Center is an extension available on Google Chrome and Firefox that allows users to search, access and copy the help articles…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.4.0",
  "name": "PE Center",
  "short_name": "PE Center",
  "manifest_version": 3,
  "author": "Victor de la Fouchardiere",
  "permissions": [
    "storage",
    "clipboardWrite"
  ],
  "action": {
    "default_popup": "popup-dark.html",
    "default_title": "PE Center",
    "default_icon": "icons/icon_16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://support.google.com/*"
      ],
      "js": [
        "support.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "host_permissions": [
    "https://pe-crawler-static.vercel.app/*"
  ]
}