iframe Resizer

Resize iframes the easy way

Что такое iframe Resizer?

iframe Resizer - это расширение Chrome, разработанное Haroun B., и его основная функция - "Resize iframes the easy way".

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

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения iframe Resizer

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

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

                        iframe Resizer is a simple browser extension which offers through its intuitive interface the ability to resize iframe elements embedded in a web page.
Simply select an iframe then use the popup's input fields to change its width and height. It is also possible to expand the iframe into full view.

The selected iframe will maintain its new size throughout the browsing session until it is discarded or until the tab is closed.                    

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

Название iframe Resizer iframe Resizer
ID jdfdmgobnadbdnobioaegopmeooolljo
Официальный URL https://chromewebstore.google.com/detail/iframe-resizer/jdfdmgobnadbdnobioaegopmeooolljo
Описание Resize iframes the easy way
Размер файла 25.07 KB
Количество установок 90
Текущая Версия 1.0.3
Последнее Обновление 2023-11-28
Дата публикации 2022-04-05
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Haroun B.
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "iframe Resizer",
    "description": "Resize iframes the easy way",
    "version": "1.0.3",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/iframe-resizer-16.png",
            "32": ".\/icons\/iframe-resizer-32.png",
            "48": ".\/icons\/iframe-resizer-48.png",
            "128": ".\/icons\/iframe-resizer-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/iframe-resizer-16.png",
        "32": ".\/icons\/iframe-resizer-32.png",
        "48": ".\/icons\/iframe-resizer-48.png",
        "128": ".\/icons\/iframe-resizer-128.png"
    }
}