Twitter Wide View

Twitter Wide View

Turns on and off twitter wide view

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitter Wide View",
  "version": "1.0.0",
  "description": "Turns on and off twitter wide view",
  "manifest_version": 3,
  "author": "Angel Zlatanov",
  "action": {
    "default_popup": "index.html",
    "default_title": "Twitter wide view"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "http://twitter.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ]
}