Spin Twitter Dog

Spin your Twitter dog!!! 🐶
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",
  "name": "Spin Twitter Dog",
  "action": {},
  "manifest_version": 3,
  "version": "1.0.0",
  "description": "Spin your Twitter dog!!! 🐶",
  "icons": {
    "16": "./extension/assets/icons/16.png",
    "48": "./extension/assets/icons/48.png",
    "128": "./extension/assets/icons/128.png"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "http://twitter.com/*"
      ],
      "js": [
        "./extension/app.js"
      ],
      "run_at": "document_end"
    }
  ]
}