Iframe Viewer

List all iframe links in a web page.

Iframe Viewer là gì?

Iframe Viewer là một tiện ích mở rộng Chrome được phát triển bởi nakamine11, và tính năng chính của nó là "List all iframe links in a web page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng Iframe Viewer

Tải xuống các tệp mở rộng Iframe Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Iframe Viewer Iframe Viewer
ID pmijopnlkmdbfhnkcecagjlknmnljkcg
URL Chính Thức https://chrome.google.com/webstore/detail/pmijopnlkmdbfhnkcecagjlknmnljkcg
Mô tả List all iframe links in a web page.
Kích Thước Tệp 18.08 KB
Số Lần Cài Đặt 74
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2022-11-14
Ngày Phát Hành 2022-11-14
Nhà Phát Triển nakamine11
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bilzard/iframe-viewer
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}