CiteGeist

CiteGeist

Influencer Engagement Tool für LinkedIn

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CiteGeist",
  "description": "Influencer Engagement Tool für LinkedIn",
  "version": "0.7.2",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "hello.html",
    "js": [
      "citegeist.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "citegeist.js"
      ],
      "matches": [
        "https://*.linkedin.com/feed/*",
        "https://*.linkedin.com/posts/*",
        "https://*.linkedin.com/*"
      ]
    },
    {
      "js": [
        "auth.js"
      ],
      "matches": [
        "https://*.citegeist.ai/*"
      ]
    }
  ],
  "icons": {
    "16": "icons/GeistWhite16.png",
    "32": "icons/GeistWhite32.png",
    "64": "icons/GeistWhite64.png",
    "128": "icons/GeistWhite128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/icons/*.svg",
        "/onboarding/*.*",
        "popup.css"
      ],
      "matches": [
        "https://*.linkedin.com/*"
      ]
    }
  ]
}