Traktivity Helper

A Chrome extension to aid Traktivity users in acquiring contact information.
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",
  "manifest_version": 3,
  "name": "Traktivity Helper",
  "description": "A Chrome extension to aid Traktivity users in acquiring contact information.",
  "version": "2.0.1",
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "48": "icon48.png",
      "128": "icon128.png"
    },
    "default_title": "Traktivity",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "js/facebook.js"
      ]
    },
    {
      "matches": [
        "*://*.traktivity.com/*",
        "http://localhost:8181/*"
      ],
      "js": [
        "js/traktivity.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "notifications",
    "scripting",
    "tabs",
    "webRequest"
  ],
  "host_permissions": [
    "*://*.facebook.com/*",
    "*://*.traktivity.com/*",
    "http://localhost:8181/*"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:8181/*",
      "*://*.traktivity.com/*"
    ]
  },
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  }
}