Helppr

Helppr

Understand with extreme clarity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Helppr",
  "version": "2.1",
  "author": "https://sifhic.com",
  "description": "Understand with extreme clarity",
  "permissions": [
    "*://*/*",
    "declarativeContent",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle",
      "js": [
        "/webcomponents-bundle.js",
        "/content.js"
      ],
      "css": [
        "/content.css"
      ]
    },
    {
      "matches": [
        "*://*.helppr.ai/get/*"
      ],
      "run_at": "document_end",
      "js": [
        "/auth-main.js"
      ]
    }
  ],
  "icons": {
    "16": "img/logo.png",
    "32": "img/logo32.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "img/logo.png",
    "default_popup": "/html/index.html"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "/img/*",
    "/disabled/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.helppr.ai/*"
    ]
  }
}