Fix my Twitter!

Gets back Twitter's old design by changing the useragent string

Что такое Fix my Twitter!?

Fix my Twitter! - это расширение Chrome, разработанное Zasz, и его основная функция - "Gets back Twitter's old design by changing the useragent string".

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

screenshot
screenshot

Скачать файл CRX расширения Fix my Twitter!

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

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

                        Almost everyone agrees Twitter's new design is ugly. *Very* ugly. This add-on gets you back the old style!

It changes the UA string to IE11's and fixes the clipboard.

IMPORTANT: you HAVE to clear Twitter's cookies on install, as this is not something that can be done automatically on Chrome. 

The source code can be found at: https://github.com/zaszthecroc/fix-my-twitter

Permissions:

* "https://twitter.com/*": needed for access to the webRequest API
* "webRequest", "webRequestBlocking": needed to edit the requests' headers before sending
* "browsingData": needed to clear Twitter's cookies                    

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

Название Fix my Twitter! Fix my Twitter!
ID cajlejogbjblhiamnihpfhmpaohgakhl
Официальный URL https://chromewebstore.google.com/detail/fix-my-twitter/cajlejogbjblhiamnihpfhmpaohgakhl
Описание Gets back Twitter's old design by changing the useragent string
Размер файла 7.22 KB
Количество установок 376
Текущая Версия 1.2
Последнее Обновление 2019-07-20
Дата публикации 2019-07-19
Рейтинг 4.26/5 Всего 23 оценок
Разработчик Zasz
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Gets back Twitter's old design by changing the useragent string",
    "manifest_version": 2,
    "version": "1.2",
    "name": "Fix my Twitter!",
    "icons": {
        "48": "img\/48.png",
        "96": "img\/96.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/twitter.com\/*",
        "webRequest",
        "webRequestBlocking",
        "browsingData"
    ]
}