Iframe Viewer

List all iframe links in a web page.

Apa itu Iframe Viewer?

Iframe Viewer adalah ekstensi Chrome yang dikembangkan oleh nakamine11, dan fitur utamanya adalah "List all iframe links in a web page.".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi Iframe Viewer

Unduh file ekstensi Iframe Viewer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Iframe Viewer Iframe Viewer
ID pmijopnlkmdbfhnkcecagjlknmnljkcg
URL Resmi https://chrome.google.com/webstore/detail/pmijopnlkmdbfhnkcecagjlknmnljkcg
Deskripsi List all iframe links in a web page.
Ukuran File 18.08 KB
Jumlah Instalasi 74
Versi Saat Ini 1.0
Terakhir Diperbarui 2022-11-14
Tanggal Publikasi 2022-11-14
Pengembang nakamine11
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/bilzard/iframe-viewer
Bahasa yang Didukung 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": [
        ""
    ]
}