TwiBot - Export Tweets from Hashtags to CSV

TwiBot - Export Tweets from Hashtags to CSV

Extract historical Twitter tweets from any Hashtag or Search Term to CSV/Excel for social media analysis in 2024

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TwiBot - Export Tweets from Hashtags to CSV",
  "version": "1.4.1",
  "description": "Extract historical Twitter tweets from any Hashtag or Search Term to CSV/Excel for social media analysis in 2024",
  "manifest_version": 3,
  "author": "XTCodeTech",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "identity",
    "identity.email",
    "storage",
    "webRequest",
    "tabs"
  ],
  "host_permissions": [
    "https://*.twitter.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.twitter.com/*",
        "http://*.twitter.com/*"
      ],
      "js": [
        "js/bootstrap.min.js",
        "js/csvparse.js",
        "js/content.js"
      ],
      "css": [
        "css/bootstrap.min.css",
        "css/style.css"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "TwiBot",
    "default_popup": "/pages/popup.html",
    "default_icon": {
      "16": "/imgs/icon16.png",
      "32": "/imgs/icon32.png"
    }
  },
  "icons": {
    "16": "/imgs/icon16.png",
    "32": "/imgs/icon32.png",
    "48": "/imgs/icon48.png",
    "128": "/imgs/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/bootstrap.min.css"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA1aWxjb4LR7/gHvnrWh5ZUpAu2QIrkhqypa+eWQD2p2Tf/MML6BDlmnq9kcgXIPepCxetUIjis99AvoYyENYM5Z0fYEquiTpUKZSmiN/caK7K97Ykm3auuVsBocpxXNeHGKPzHPiXXa/q8zS6kMODPR7J6TC6IyUCOtOjeZrNmTfTSd2g9puQFg6wODMph5Tkr0SZ1e4ogTrINNydX1mGHZfr7SPTfzgvd92ATmhxWkTEo8rAaG9CmdiuCQpqXV0H9AgZXwmT2BP6jUll1k4UABcn0y6Q5sk/y1SKtCdVOv00DOXIj4qNiZ4cg0GOLYJMrWW1FsBeAwFYK0K2CzSuKQIDAQAB",
  "oauth2": {
    "client_id": "1042034332054-b8g8dpoocc92curv2km2dsn8pj5mih96.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}