HeyHi.World

HeyHi.World

Better questions get better answers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HeyHi.World",
  "version": "2.9.1",
  "description": "Better questions get better answers",
  "author": "[email protected]",
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "service_worker": "js/background1.js"
  },
  "options_page": "localapp.html#settingsContainer",
  "action": {
    "default_icon": "assets/64.png"
  },
  "icons": {
    "16": "assets/16.png",
    "32": "assets/32.png",
    "48": "assets/48.png",
    "64": "assets/64.png"
  },
  "content_scripts": [
    {
      "css": [
        "css/index.css"
      ],
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/chrome.js",
        "js/api.js",
        "js/content.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "css/style.css",
        "js/script.js",
        "assets/popupLoadAnimation.gif",
        "assets/One.svg",
        "assets/OneDisabled.svg",
        "assets/Two.svg",
        "assets/TwoDisabled.svg",
        "assets/Three.svg",
        "assets/ThreeDisabled.svg",
        "assets/32.png",
        "assets/logo.svg"
      ],
      "matches": [
        "*://*/*"
      ],
      "use_dynamic_url": true
    }
  ]
}