No Twitter Crop

Get rid of Twitter's image crop on single image tweets.

Что такое No Twitter Crop?

No Twitter Crop - это расширение Chrome, разработанное Jaebirds, и его основная функция - "Get rid of Twitter's image crop on single image tweets.".

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

screenshot

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

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

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

                        Twitter has updated its mobile app so that it displays vertical sized images properly, but the desktop version still has an awful crop. This extension simply fixes the site so that vertical sized images will display properly. This only works for single image posts, not photosets.                    

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

Название No Twitter Crop No Twitter Crop
ID amijdfkmcibipgokogloipabagonjmbb
Официальный URL https://chromewebstore.google.com/detail/no-twitter-crop/amijdfkmcibipgokogloipabagonjmbb
Описание Get rid of Twitter's image crop on single image tweets.
Размер файла 6.81 KB
Количество установок 111
Текущая Версия 1.02
Последнее Обновление 2021-08-12
Дата публикации 2021-08-11
Рейтинг 4.20/5 Всего 5 оценок
Разработчик Jaebirds
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Twitter Crop",
    "description": "Get rid of Twitter's image crop on single image tweets.",
    "version": "1.02",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/notwittercrop16.png",
            "32": "\/images\/notwittercrop32.png",
            "48": "\/images\/notwittercrop48.png",
            "128": "\/images\/notwittercrop128.png"
        }
    },
    "icons": {
        "16": "\/images\/notwittercrop16.png",
        "32": "\/images\/notwittercrop32.png",
        "48": "\/images\/notwittercrop48.png",
        "128": "\/images\/notwittercrop128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "css": [
                "twitter.css"
            ]
        }
    ]
}