Old Twitter Layout (2024)

A new extension that returns old Twitter's look.

ما هو Old Twitter Layout (2024)؟

Old Twitter Layout (2024) هو إضافة Chrome تم تطويرها بواسطة https://dimden.dev، والميزة الرئيسية لها هي "A new extension that returns old Twitter's look.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Old Twitter Layout (2024)

قم بتنزيل ملفات الامتداد Old Twitter Layout (2024) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Extension to return old Twitter layout from 2015 (or 2018). WORKS IN 2024!
This extension doesn't add any CSS on top of original Twitter. It's fully different client that replaces original new Twitter client, making it faster than alternatives that just add style on top of Twitter. This extension requires you to be logged in to Twitter account.

Please visit https://twitter.com/old/settings after installing to make it work just as you like. It switches to chronological timeline by default, you can switch back to algorithmical timeline in settings.

You can visit unchanged Twitter by visiting https://twitter.com?newtwitter=true.

The code is open source! Check https://github.com/dimdenGD/OldTwitter to see the code and report any issues.

Features
- Almost all of Twitter functionality is implemented  
- Both reverse chronological and algorithmical timelines support. And exclusive: Reverse chronological timeline with friends likes and follows (basically mix of both chrono and algo timelines)  
- Custom profile link colors supported  
- You can change custom profile link color and it'll appear for other extension users (priority: oldtwitter color db -> twitter color db -> default color)  
- Removes all analytics and tracking from Twitter  
- Track your unfollowers for free  
- Search, sort and filter your followers  
- Removes all ads  
- Easy download of videos and GIFs  
- Translate tweets without having to open them, also ability to set specific users/languages to autotranslate  
- Shows why tweets were added to algorthimical timeline  
- Dark mode support  
- Ability to enable/disable Twemoji, disable stars (favorites) back to likes (hearts), change font, default link color and any other color in extension  
- Lot of hotkeys  
- Mobile support
- Custom CSS support  

If you found this extension useful please consider donating: https://dimden.dev/donate/ or following me on Twitter: https://twitter.com/dimdenEFF                    

معلومات أساسية عن التمديد

الاسم Old Twitter Layout (2024) Old Twitter Layout (2024)
ID jgejdcdoeeabklepnkdbglgccjpdgpmf
عنوان URL الرسمي https://chromewebstore.google.com/detail/old-twitter-layout-2024/jgejdcdoeeabklepnkdbglgccjpdgpmf
الوصف A new extension that returns old Twitter's look.
حجم الملف 1.83 MB
عدد التثبيتات 55,243
النسخة الحالية 1.8.2.1
آخر تحديث 2024-02-26
تاريخ النشر 2022-07-26
تقييم 4.65/5 مجموع تقييمات 325
المطور https://dimden.dev
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/dimdenGD/OldTwitter
عنوان صفحة المساعدة https://github.com/dimdenGD/OldTwitter
عنوان صفحة سياسة الخصوصية https://dimden.dev/ot/privacy.html
اللغات المدعومة de,en,fil,fr,nl,no,vi,tr,ca,es,it,lv,pl,pt-BR,ro,fi,sv,cs,el,bg,ru,uk,iw,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Twitter Layout (2024)",
    "description": "__MSG_ext_description__",
    "version": "1.8.2.1",
    "manifest_version": 3,
    "homepage_url": "https:\/\/github.com\/dimdenGD\/OldTwitter",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "default_locale": "en",
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "contextMenus",
        "scripting",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "*:\/\/*.twitter.com\/*",
        "*:\/\/twitter.com\/*",
        "*:\/\/twimg.com\/*",
        "*:\/\/*.twimg.com\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "ruleset.json"
            }
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "layouts\/*",
                "images\/*",
                "fonts\/*",
                "libraries\/*",
                "_locales\/*"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    },
    "action": {
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        },
        "default_title": "Open settings"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*?*newtwitter=true*"
            ],
            "js": [
                "scripts\/xIconRemove.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/twitter.com\/*?*newtwitter=true*"
            ],
            "js": [
                "scripts\/newtwitter.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/twitter.com\/*?*newtwitter=true*",
                "https:\/\/twitter.com\/settings\/download_your_data",
                "https:\/\/twitter.com\/i\/flow\/login*",
                "https:\/\/twitter.com\/i\/tweetdeck",
                "https:\/\/twitter.com\/i\/communitynotes",
                "https:\/\/twitter.com\/i\/broadcasts\/*"
            ],
            "js": [
                "scripts\/blockBeforeInject.js",
                "scripts\/config.js",
                "scripts\/helpers.js",
                "scripts\/apis.js",
                "scripts\/injection.js"
            ],
            "css": [
                "libraries\/viewer.min.css"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}