Tappy - Your AI LinkedIn Comments Assistant

Tappy - Your AI LinkedIn Comments Assistant

Grow your personal brand on LinkedIn

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "action": {},
  "name": "Tappy - Your AI LinkedIn Comments Assistant",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "version": "0.2.5",
  "description": "Grow your personal brand on LinkedIn",
  "permissions": [
    "storage"
  ],
  "options_page": "src/options.html",
  "host_permissions": [
    "https://www.tappy.ai/*"
  ],
  "options_ui": {
    "browser_style": true,
    "page": "src/options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/icon16.png",
        "icons/icon128.png"
      ],
      "matches": [
        "https://www.linkedin.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "src/app/jquery-3.6.1.min.js",
        "src/app/index.js"
      ],
      "css": [
        "src/app/styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "src/background.js",
    "type": "module"
  }
}