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
电子邮箱 [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": [
        ""
    ]
}