TwLikersExporter - Tweet Likers Export Tool

TwLikersExporter - Tweet Likers Export Tool

Extract Twitter user data of all users who liked a tweet to CSV/Excel with one click!Easily generate leads with valuable information

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.1.0",
  "description": "__MSG_appDesc__",
  "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": "TwLikersExporter",
    "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": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAttj4qplkDVZ5PW/bxTUUKUUNLbp61ZNzPf3CptfhL0mw46tyoQVfrDxa65Pa2Dqjr5osXyFnSnbBcfLz2UUawU0iHTZ8vx6EjvL85asnNTytf9HVyMvKugTmnzU+yg4d5u8xKVxdGdMbYAgKdmi4CJSjp4fD135aRf6s8cOZkcc6MnAMks442rFhfPpaUQM5Y2tchkpFbDzTgq5EXNQYAhu5FunSx9XIKpo1CpeENjTrIFw/L/wt2yRnpZdAWlLSCwhtjyFBeZj+RK0VjhIAv1OANUSMJAWPNtHGKcB+iQH171EacJY9ou4NbCbJVqlERPTJ8cDB3MAmwV1ni3ASUwIDAQAB",
  "oauth2": {
    "client_id": "858504339202-7voj6qp19p88ljg4si5rdsagkkb5qq88.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "default_locale": "en"
}