Twitter estimated revenue per tweet

Twitter estimated revenue per tweet

Replace the Views button from Twitter with the estimated revenue value per tweet

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Twitter estimated revenue per tweet",
  "description": "Replace the Views button from Twitter with the estimated revenue value per tweet",
  "version": "1",
  "author": "Andres Botia",
  "content_scripts": [
    {
      "matches": [
        "*://twitter.com/*"
      ],
      "js": [
        "./scripts/content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  }
}