NotionContacts

NotionContacts

Add Twitter and LinkedIn users to a Notion CRM

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NotionContacts",
  "description": "Add Twitter and LinkedIn users to a Notion CRM",
  "version": "0.1",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "logo192.png",
    "48": "logo192.png",
    "128": "logo192.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "identity",
    "storage",
    "externally_connectable"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.openai.com/*",
        "http://localhost:3000/*",
        "https://twitter.com/*",
        "https://notioncontacts.vercel.app/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.js",
        "index.html"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "https://notioncontacts.vercel.app/*"
    ]
  }
}