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
官方網址 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": [
        ""
    ]
}