Framer - Make IFrames possible!

Drop X-Frame-Options and Content-Security-Policy HTTP response headers for special sites, allowing pages to be embedded as iframes.

Что такое Framer - Make IFrames possible!?

Framer - Make IFrames possible! - это расширение Chrome, разработанное Martin Wiechmann, и его основная функция - "Drop X-Frame-Options and Content-Security-Policy HTTP response headers for special sites, allowing pages to be embedded as iframes.".

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

screenshot
screenshot
screenshot

Скачать файл CRX расширения Framer - Make IFrames possible!

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

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

                        A chrome extension that lets the user drop X-Frame-Options and Content-Security-Policy HTTP response headers for special sites, allowing advanced development and pages to be iframed.                    

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

Название Framer - Make IFrames possible! Framer - Make IFrames possible!
ID adohambhfalbpaenaclmhhjhilmakmoo
Официальный URL https://chromewebstore.google.com/detail/framer-make-iframes-possi/adohambhfalbpaenaclmhhjhilmakmoo
Описание Drop X-Frame-Options and Content-Security-Policy HTTP response headers for special sites, allowing pages to be embedded as iframes.
Размер файла 211 KB
Количество установок 185
Текущая Версия 1.0.0
Последнее Обновление 2021-06-22
Дата публикации 2021-06-22
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Martin Wiechmann
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/MartinWie/Framer
URL страницы помощи https://github.com/MartinWie/Framer/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_manifest_name__",
    "description": "__MSG_manifest_description__",
    "version": "1.0.0",
    "action": {
        "default_title": "__MSG_manifest_title__",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background-worker.js"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "default_locale": "en",
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "removeHeader",
                "enabled": false,
                "path": "removeHeader.json"
            }
        ]
    }
}