Iframe Viewer

List all iframe links in a web page.

O que é Iframe Viewer?

Iframe Viewer é uma extensão do Chrome desenvolvida por nakamine11, e sua principal característica é "List all iframe links in a web page.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Iframe Viewer

Baixe arquivos de extensão Iframe Viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Iframe Viewer Iframe Viewer
ID pmijopnlkmdbfhnkcecagjlknmnljkcg
URL Oficial https://chrome.google.com/webstore/detail/pmijopnlkmdbfhnkcecagjlknmnljkcg
Descrição List all iframe links in a web page.
Tamanho do Arquivo 18.08 KB
Contagem de Instalações 74
Versão Atual 1.0
Última Atualização 2022-11-14
Data de Publicação 2022-11-14
Desenvolvedor nakamine11
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/bilzard/iframe-viewer
Idiomas Suportados 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": [
        ""
    ]
}