Iframe Viewer

List all iframe links in a web page.

Was ist Iframe Viewer?

Iframe Viewer ist eine Chrome-Erweiterung, die von nakamine11 entwickelt wurde, und ihr Hauptmerkmal ist "List all iframe links in a web page.".

Erweiterungsscreenshots

Iframe Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Iframe Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Iframe Viewer Iframe Viewer
ID pmijopnlkmdbfhnkcecagjlknmnljkcg
Offizielle URL https://chrome.google.com/webstore/detail/pmijopnlkmdbfhnkcecagjlknmnljkcg
Beschreibung List all iframe links in a web page.
Dateigröße 18.08 KB
Installationsanzahl 74
Aktuelle Version 1.0
Letztes Update 2022-11-14
Veröffentlichungsdatum 2022-11-14
Entwickler nakamine11
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/bilzard/iframe-viewer
Unterstützte Sprachen 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": [
        ""
    ]
}