Iframe Viewer

List all iframe links in a web page.

¿Qué es Iframe Viewer?

Iframe Viewer es una extensión de Chrome desarrollada por nakamine11, y su función principal es "List all iframe links in a web page.".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión Iframe Viewer

Descarga archivos de extensión Iframe Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Iframe Viewer Iframe Viewer
ID pmijopnlkmdbfhnkcecagjlknmnljkcg
URL Oficial https://chrome.google.com/webstore/detail/pmijopnlkmdbfhnkcecagjlknmnljkcg
Descripción List all iframe links in a web page.
Tamaño del Archivo 18.08 KB
Cantidad de Instalaciones 74
Versión Actual 1.0
Última Actualización 2022-11-14
Fecha de Publicación 2022-11-14
Desarrollador nakamine11
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/bilzard/iframe-viewer
Idiomas Soportados 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": [
        ""
    ]
}