Iframe Viewer

List all iframe links in a web page.

Iframe Viewer क्या है?

Iframe Viewer nakamine11 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "List all iframe links in a web page."।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Iframe Viewer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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": [
        ""
    ]
}