Iframe Viewer

List all iframe links in a web page.

Co je Iframe Viewer?

Iframe Viewer je rozšíření Chrome vyvinuté nakamine11, a jeho hlavní funkcí je „List all iframe links in a web page.“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření Iframe Viewer

Stáhněte si soubory rozšíření Iframe Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Iframe Viewer Iframe Viewer
ID pmijopnlkmdbfhnkcecagjlknmnljkcg
Oficiální URL https://chrome.google.com/webstore/detail/pmijopnlkmdbfhnkcecagjlknmnljkcg
Popis List all iframe links in a web page.
Velikost souboru 18.08 KB
Počet instalací 74
Aktuální Verze 1.0
Poslední Aktualizace 2022-11-14
Datum Vydání 2022-11-14
Vývojář nakamine11
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/bilzard/iframe-viewer
Podporované Jazyky 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": [
        ""
    ]
}