WebHelper.AI

WebHelper.AI

WebHelper.AI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WebHelper.AI",
  "version": "1.4",
  "description": "WebHelper.AI",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArC0kyiwFBypx/FFvvOYR+fj9x9dd6STQJk7OOXI0IC/KrX/EE/L8zyfcptpNSyqggU1BIE5bwrD7cVQChT2zD+J692e5yOtHhoD9XcZ3FzvNX7Hl8AwJnCPDd5ioEygpftO/DAZnQnTdPVsJ+nF1lnQfQepgRbJorQ/K2AFx+ESVuT7TfoAN1AhV4kCNokEBAiIub0/09ZVF72B8ajYhNF7JI+2F01cHygYByFVz1JFaGwYp1ebHc9ff+rnDVVJnih/ZiLxcr1raii3P2S3aLr5GlJlHFedb3U2YKqoTFviPvg/kccsBfu/sJ9tTvzQ7+GAc1ZtSQmr63vCNpeGAmQIDAQAB",
  "oauth2": {
    "client_id": "739704033380-hqv26dko7qppa9htbmteagggsftsd5sn.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "icons": {
    "16": "assets/image/logo.png",
    "24": "assets/image/logo.png",
    "64": "assets/image/logo.png",
    "128": "assets/image/logo.png"
  },
  "permissions": [
    "tabs",
    "scripting",
    "activeTab",
    "identity",
    "identity.email",
    "storage"
  ],
  "host_permissions": [
    "http://*/",
    "http://localhost/",
    "https://*/",
    "*://*.google.com/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "start.js"
      ]
    },
    {
      "matches": [
        "https://docs.google.com/document/d/**",
        "https://docs.google.com/presentation/d/**"
      ],
      "js": [
        "doc.js"
      ]
    }
  ],
  "action": {},
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "userList.html",
        "doc.js",
        "assets/image/logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  }
}