Related Topics Finder

Related Topics Finder

Explore related and similar topics closely related to content of visited site.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Related Topics Finder",
  "description": "Explore related and similar topics closely related to content of visited site.",
  "version": "1.0.3",
  "icons": {
    "16": "/images/16.png",
    "32": "/images/32.png",
    "64": "/images/64.png",
    "128": "/images/128.png"
  },
  "short_name": "Related Topic Finder",
  "permissions": [
    "storage",
    "tabs",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}