webpage cloner

clone a webpage by downloading all links as files

Was ist webpage cloner?

webpage cloner ist eine Chrome-Erweiterung, die von Nitro Rain entwickelt wurde, und ihr Hauptmerkmal ist "clone a webpage by downloading all links as files".

Erweiterungsscreenshots

screenshot

webpage cloner-Erweiterungs-CRX-Datei herunterladen

Laden Sie webpage cloner-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        clone a webpage by downloading all links as files

Easily download several links from a website.
Easily download a large number of links from a website.

Do you want to download a large number of PDFs, podcasts, or other items from a website without having to right-click and select "Save As" for each one? Batch Link Downloader can take care of this for you!

Perfect research tool for students, developers, hobbyists, professionals etc.

NB: The extension is supported with contextual ads and donations. Please consider aiding further development and in keeping this extension ad light with kind DONATIONS                    

Grundlegende Informationen zur Erweiterung

Name webpage cloner webpage cloner
ID ffjnfifmelbmglnajefiipdeejghkkjg
Offizielle URL https://chromewebstore.google.com/detail/webpage-cloner/ffjnfifmelbmglnajefiipdeejghkkjg
Beschreibung clone a webpage by downloading all links as files
Dateigröße 47.8 KB
Installationsanzahl 10,000
Aktuelle Version 1.0.0.1
Letztes Update 2023-12-30
Veröffentlichungsdatum 2022-07-07
Bewertung 1.57/5 Insgesamt 7 Bewertungen
Entwickler Nitro Rain
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.privacypolicygenerator.info/live.php?token=wVLCtmnjHMJ7kKxnuQ66fvgcVcikIuTv
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "webpage cloner",
    "version": "1.0.0.1",
    "manifest_version": 3,
    "description": "clone a webpage by downloading all links as files",
    "author": "The codefather",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "options_page": ".\/options\/options.html",
    "action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Batch Link Downloader"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "downloads",
        "storage"
    ]
}