Examine source code of Text Highlighter

Inspect and view changes in Text Highlighter source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Ivan Kapunac",
  "name": "Text Highlighter",
  "description": "Enter a keyword and get the text you're looking for highlighted - all the time while surfing the web!",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "./icons/logo.png",
    "48": "./icons/logo.png",
    "128": "./icons/logo.png"
  },
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}