Bring Back Larry

Bring Back Larry

Don't let Twitter's questionable design choices get you down. Take control of your logo destiny with this extension!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Bring Back Larry",
  "description": "Don't let Twitter's questionable design choices get you down. Take control of your logo destiny with this extension!",
  "version": "0.0.0.9",
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://mobile.twitter.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "action": {
    "default_icon": "/icons/logo.png",
    "default_popup": "popup.html",
    "title": "Bring Back Larry"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "128": "./icons/logo.png"
  },
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ]
}