X Wall Street BETA

THIS EXTENSION IS FOR BETA TESTING
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "X Wall Street BETA",
  "author": "flash pig",
  "version": "0.1.1",
  "description": "THIS EXTENSION IS FOR BETA TESTING",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-128.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://x.com/*"
      ],
      "js": [
        "src/pages/content/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/js/*.js",
        "icon-128.png",
        "icon-34.png",
        "img/*",
        "game/*",
        "*.png",
        "*.jpg"
      ]
    }
  ]
}