Tinder Image Expander

Allows you to click on a Tinder profile image and to open it in a new tab

Что такое Tinder Image Expander?

Tinder Image Expander - это расширение Chrome, разработанное omeriko9, и его основная функция - "Allows you to click on a Tinder profile image and to open it in a new tab".

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

screenshot

Скачать файл CRX расширения Tinder Image Expander

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

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

                        Fetches background-image from div for each picture, and adds a small button called 'open' that will open the image in a new tab                    

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

Название Tinder Image Expander Tinder Image Expander
ID omjldoifbgnmpnjaeboeoomlmmhbepcg
Официальный URL https://chrome.google.com/webstore/detail/tinder-image-expander/omjldoifbgnmpnjaeboeoomlmmhbepcg
Описание Allows you to click on a Tinder profile image and to open it in a new tab
Размер файла 34.81 KB
Количество установок 3,113
Текущая Версия 1.3
Последнее Обновление 2022-06-12
Дата публикации 2020-11-24
Рейтинг 5.00/5 Всего 4 оценок
Разработчик omeriko9
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tinder Image Expander",
    "version": "1.3",
    "description": "Allows you to click on a Tinder profile image and to open it in a new tab",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tinder.com\/*"
            ],
            "js": [
                "jquery.js",
                "contentScript.js"
            ]
        }
    ],
    "manifest_version": 3
}