Bring Back Twitter

Brings back old Twitter UI

What is Bring Back Twitter?

Bring Back Twitter is a Chrome extension developed by losieczka.dev, and its main feature is "Brings back old Twitter UI".

Extension Screenshots

screenshot
screenshot

Download Bring Back Twitter Extension CRX File

Download Bring Back Twitter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Replacing the new X logo with Blue Bird and also "Post" buttons with "Tweet" buttons.                    

Extension Basic Information

Name Bring Back Twitter Bring Back Twitter
ID linolhhakonnglhlljpkfgbgcmhlmpjb
Official URL https://chromewebstore.google.com/detail/bring-back-twitter/linolhhakonnglhlljpkfgbgcmhlmpjb
Description Brings back old Twitter UI
File Size 169 KB
Installation Count 50
Current Version 1.1.3
Last Updated 2024-02-06
Publish Date 2023-08-10
Rating 5.00/5 Total 2 Ratings
Developer losieczka.dev
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bring Back Twitter",
    "icons": {
        "16": "assets\/app-logo16.png",
        "32": "assets\/app-logo32.png",
        "48": "assets\/app-logo48.png",
        "128": "assets\/app-logo128.png"
    },
    "version": "1.1.3",
    "permissions": [
        "storage"
    ],
    "description": "Brings back old Twitter UI",
    "host_permissions": [
        "https:\/\/*.twitter.com\/*",
        "https:\/\/*.x.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.x.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/twitter-logo.png",
                "assets\/twitter-logo128.png",
                "assets\/twitter-logo48.png",
                "assets\/twitter-logo32.png",
                "assets\/twitter-logo16.png",
                "assets\/verified-logo.png",
                "assets\/verified-logo-white.png",
                "assets\/verified-logo27.png"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "https:\/\/*.x.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/app-logo16.png",
            "32": "assets\/app-logo32.png",
            "48": "assets\/app-logo48.png",
            "128": "assets\/app-logo128.png"
        },
        "default_title": "BringBackTwitter",
        "default_popup": "popup.html"
    },
    "manifest_version": 3
}