Old Twitter Layout

Brings back the old Twitter Layout

Что такое Old Twitter Layout?

Old Twitter Layout - это расширение Chrome, разработанное Wolvan, и его основная функция - "Brings back the old Twitter Layout".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Old Twitter Layout

Скачайте файлы расширений Old Twitter Layout в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Brings back the old Twitter layout, that Twitter has slowly started phasing out. No more mobile-like UI, no more currated feed.

May require refreshing multiple times before it goes into effect due to browser caching.

Want to thank me? Buy me a coffee!
https://ko-fi.com/wolvan                    

Основная информация о расширении

Название Old Twitter Layout Old Twitter Layout
ID jjldkokjmjdnlnifmehbljdafklejeha
Официальный URL https://chrome.google.com/webstore/detail/old-twitter-layout/jjldkokjmjdnlnifmehbljdafklejeha
Описание Brings back the old Twitter Layout
Размер файла 45.42 KB
Количество установок 4,911
Текущая Версия 1.0.6
Последнее Обновление 2020-05-14
Дата публикации 2020-05-14
Рейтинг 4.51/5 Всего 261 оценок
Разработчик Wolvan
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Old Twitter Layout",
    "description": "Brings back the old Twitter Layout",
    "version": "1.0.6",
    "short_name": "otl",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js",
            "scripts\/storage.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "scripts\/firefox-copyfix-wrapper.js",
                "scripts\/banner-removal-wrapper.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "scripts\/firefox-copyfix.js",
        "scripts\/banner-removal.js"
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "clipboardRead",
        "clipboardWrite",
        "https:\/\/twitter.com\/*"
    ]
}