Pintable

Pintable

An extension to extract and sync data to Notion from Twitter, Linkedin, Tiktok, Instagram, YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pintable",
  "version": "1.1",
  "description": "An extension to extract and sync data to Notion from Twitter, Linkedin, Tiktok, Instagram, YouTube.",
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src https://api.notion.com/;"
  },
  "background": {
    "service_worker": "background.min.js"
  },
  "externally_connectable": {
    "matches": [
      "https://pintable.co/*"
    ]
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.pintable.co/*",
        "*://*.youtube.com/*",
        "*://*.twitter.com/*",
        "*://*.tiktok.com/*",
        "*://*.instagram.com/*",
        "*://*.linkedin.com/*",
        "*://*.notion.com/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content.min.js"
      ]
    }
  ]
}