TrackBack

TrackBack

An extension that helps you more seamlessly track your job applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TrackBack",
  "description": "An extension that helps you more seamlessly track your job applications.",
  "version": "1.1.1",
  "manifest_version": 3,
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "./worker.js"
  },
  "action": {
    "default_icon": {
      "16": "./images/icon_16.png",
      "32": "./images/icon_32.png",
      "48": "./images/icon_48.png",
      "128": "./images/icon_128.png"
    },
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "scripting",
    "storage",
    "downloads"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "icons": {
    "16": "./images/icon_16.png",
    "32": "./images/icon_32.png",
    "48": "./images/icon_48.png",
    "128": "./images/icon_128.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+Shift+S",
        "mac": "Alt+Shift+S",
        "chromeos": "Alt+Shift+S",
        "linux": "Alt+Shift+S"
      },
      "description": "Open/close the popup"
    }
  }
}