Iframe Viewer

List all iframe links in a web page.

Cos'è Iframe Viewer?

Iframe Viewer è un'estensione di Chrome sviluppata da nakamine11, e la sua funzione principale è "List all iframe links in a web page.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Iframe Viewer

Scarica i file di estensione Iframe Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A chrome extension that helps you open iframe page in a separate tab.

This tool automatically extracts iframe elements from any web site and show you links to open them in a separate tab.

The original intent for usage is as a machine translation helper. iframe elements are not translated by machine translation engine such as Google Translate. This tool makes it easier to translate contents in the iframe elements.                    

Informazioni di Base sull'Estensione

Nome Iframe Viewer Iframe Viewer
ID pmijopnlkmdbfhnkcecagjlknmnljkcg
URL Ufficiale https://chrome.google.com/webstore/detail/pmijopnlkmdbfhnkcecagjlknmnljkcg
Descrizione List all iframe links in a web page.
Dimensione del File 18.08 KB
Conteggio Installazioni 74
Versione Corrente 1.0
Ultimo Aggiornamento 2022-11-14
Data di Pubblicazione 2022-11-14
Sviluppatore nakamine11
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/bilzard/iframe-viewer
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Iframe Viewer",
    "description": "List all iframe links in a web page.",
    "version": "1.0",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "16": "icon-16.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "icon-32.png",
        "default_popup": "popup.html",
        "default_title": "no iframes"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "host_permissions": [
        ""
    ]
}