Web Tracker

Web Tracker

Web Tracker helps you track anything on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "yafasu",
  "action": {
    "default_icon": {
      "512": "img/logo_512x512.png"
    },
    "default_title": "Web Tracker"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/js/scraperscript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/js/contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "description": "Web Tracker helps you track anything on the web.",
  "icons": {
    "512": "img/logo_512x512.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "name": "Web Tracker",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "scripting",
    "contextMenus"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "short_name": "Web Tracker",
  "version": "1.0.3"
}