Threads Sync

Threads Sync

Seamlessly Import Twitter/X Users to Threads: Auto-Follow from Your Twitter/X Following List to Threads.net

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Checkthenet",
  "version": "1.0.8",
  "description": "Seamlessly Import Twitter/X Users to Threads: Auto-Follow from Your Twitter/X Following List to Threads.net",
  "manifest_version": 3,
  "name": "Threads Sync",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "https://twitter.com/*",
    "https://www.threads.net/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://www.threads.net/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "static/css/main.css",
        "fonts/Inter-Regular.ttf"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/popup-logo.png",
      "24": "images/popup-logo.png",
      "32": "images/popup-logo.png"
    },
    "default_popup": "index.html"
  },
  "icons": {
    "16": "images/popup-logo.png",
    "32": "images/popup-logo.png",
    "48": "images/popup-logo.png",
    "128": "images/popup-logo.png"
  }
}