Exporting X

Exporting X

Easily export posts, followers, people you follow, and bookmarks from X/Twitter and download them to a CSV file.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Ian Nuttall",
  "description": "Easily export posts, followers, people you follow, and bookmarks from X/Twitter and download them to a CSV file.",
  "name": "Exporting X",
  "version": "0.0.2",
  "manifest_version": 3,
  "homepage_url": "https://www.exportingx.com/",
  "action": {
    "default_icon": {
      "16": "icons/48.png",
      "32": "icons/48.png"
    },
    "default_popup": "src/entries/popup/index.html"
  },
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "host_permissions": [
    "*://*.twitter.com/*",
    "https://*.exportingx.com/*"
  ],
  "icons": {
    "16": "icons/48.png",
    "32": "icons/48.png",
    "48": "icons/48.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/src/entries/contentScript/primary/main-f5909b44.js",
        "assets/store-b5064af6.js",
        "assets/utils-6543f333.js",
        "assets/store-d81981cb.css",
        "src/entries/contentScript/primary/main.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ]
}