Iframe Viewer

List all iframe links in a web page.

Iframe Viewerとは何ですか?

Iframe Viewerはnakamine11によって開発されたChromeの拡張機能で、その主な機能は「List all iframe links in a web page.」です。

拡張機能のスクリーンショット

Iframe Viewer拡張機能のCRXファイルをダウンロード

Iframe Viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Iframe Viewer Iframe Viewer
ID pmijopnlkmdbfhnkcecagjlknmnljkcg
公式URL https://chrome.google.com/webstore/detail/pmijopnlkmdbfhnkcecagjlknmnljkcg
説明 List all iframe links in a web page.
ファイルサイズ 18.08 KB
インストール数 74
現在のバージョン 1.0
最終更新日 2022-11-14
公開日 2022-11-14
開発者 nakamine11
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/bilzard/iframe-viewer
対応言語 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": [
        ""
    ]
}