Iframe Viewer

List all iframe links in a web page.

Vad är Iframe Viewer?

Iframe Viewer är en Chrome-tillägg utvecklad av nakamine11, och dess huvudfunktion är "List all iframe links in a web page.".

Tilläggsskärmbilder

Ladda ner Iframe Viewer-förlängningens CRX-fil

Ladda ner Iframe Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Iframe Viewer Iframe Viewer
ID pmijopnlkmdbfhnkcecagjlknmnljkcg
Officiell webbadress https://chrome.google.com/webstore/detail/pmijopnlkmdbfhnkcecagjlknmnljkcg
Beskrivning List all iframe links in a web page.
Filstorlek 18.08 KB
Antal Installationer 74
Aktuell Version 1.0
Senast Uppdaterad 2022-11-14
Publiceringsdatum 2022-11-14
Utvecklare nakamine11
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/bilzard/iframe-viewer
Stödda Språk 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": [
        ""
    ]
}