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.

Co to jest Framer - Make IFrames possible!?

Framer - Make IFrames possible! to rozszerzenie Chrome opracowane przez Martin Wiechmann, a jego główną funkcją jest „Drop X-Frame-Options and Content-Security-Policy HTTP response headers for special sites, allowing pages to be embedded as iframes.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Framer - Make IFrames possible!

Pobierz pliki rozszerzeń Framer - Make IFrames possible! w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Framer - Make IFrames possible! Framer - Make IFrames possible!
ID adohambhfalbpaenaclmhhjhilmakmoo
Oficjalny URL https://chromewebstore.google.com/detail/framer-make-iframes-possi/adohambhfalbpaenaclmhhjhilmakmoo
Opis Drop X-Frame-Options and Content-Security-Policy HTTP response headers for special sites, allowing pages to be embedded as iframes.
Rozmiar pliku 211 KB
Liczba instalacji 185
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2021-06-22
Data Publikacji 2021-06-22
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Martin Wiechmann
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/MartinWie/Framer
Adres URL Strony Pomocy https://github.com/MartinWie/Framer/issues
Obsługiwane Języki 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"
            }
        ]
    }
}