Hiliter

Hiliter

Instantly see where your keywords and links are on every webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hiliter",
  "description": "Instantly see where your keywords and links are on every webpage.",
  "version": "1.0.0.11",
  "manifest_version": 3,
  "icons": {
    "128": "/img/logo.png"
  },
  "action": {
    "default_popup": "/pages/popup/index.html",
    "default_icons": {
      "16": "/img/logo_grey.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "all_frames": false,
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "exclude_matches": [
        "https://link-hiliter.web.app/",
        "http://localhost/*"
      ],
      "js": [
        "/js/content.js"
      ],
      "css": [
        "/css/content.css"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "/js/app_content.js"
      ],
      "matches": [
        "http://localhost/*",
        "https://link-hiliter.web.app/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://*/*"
      ],
      "extension_ids": []
    }
  ]
}