Lefty

Lefty

Lefty extension for Instagram and TikTok

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lefty",
  "version": "1.11",
  "description": "Lefty extension for Instagram and TikTok",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "*://*.instagram.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.instagram.com/*",
        "*://*.tiktok.com/@*"
      ],
      "js": [
        "build_plugin/web/plugin.dart.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "icons": {
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "build/web/plugin.*",
        "public/iframe.html",
        "public/pipe.js",
        "public/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "https://geralt.lefty.io/*",
      "https://plugin.lefty.io/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self'; style-src https:* 'self' 'unsafe-inline'; font-src https:* 'self' data:; frame-src *;"
  }
}