Twitter Misc

Twitter Misc

Miscellaneous functions related to Twitter (This add-on was formerly called Twitter Old UI)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "1.2023.229.0",
  "author": "dlw@mcprv",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{13f638cc-abe6-11e9-a2a3-2a2ae2dbcce4}"
    }
  },
  "permissions": [
    "tabs",
    "storage",
    "https://*.twitter.com/*",
    "<all_urls>",
    "menus",
    "notifications",
    "management"
  ],
  "icons": {
    "96": "lib/enabled.svg"
  },
  "background": {
    "scripts": [
      "baidu_translate.js",
      "google_translate.js",
      "microsoft_translate.js",
      "mirai_translate.js",
      "yandex_translate.js",
      "deepl_translate.js",
      "papago_translate.js",
      "libre_translate.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://*.twitter.com/*"
      ],
      "js": [
        "content.js",
        "content_translate.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "commands": {
    "open_in_sidebar": {
      "suggested_key": {},
      "description": "__MSG_open_in_sidebar__"
    },
    "tweet_this": {
      "suggested_key": {},
      "description": "__MSG_tweet_this__"
    },
    "search_this": {
      "suggested_key": {},
      "description": "__MSG_search_this__"
    }
  },
  "sidebar_action": {
    "default_icon": {
      "96": "lib/enabled.svg"
    },
    "default_title": "__MSG_extension_name__",
    "default_panel": "sidebar.html",
    "open_at_install": false
  }
}