Website to PDF

Convert entire website to PDF file

Vad är Website to PDF?

Website to PDF är en Chrome-tillägg utvecklad av Nikolay Gechev, och dess huvudfunktion är "Convert entire website to PDF file".

Tilläggsskärmbilder

screenshot

Ladda ner Website to PDF-förlängningens CRX-fil

Ladda ner Website to PDF-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

                        You are able to convert entire website (Limit of pages is 39) to one PDF file or to print it. It is recommended to use a page address with format http://example.com/section1/partition2 to convert only pages into section1/partition2.

If something does not working as expect, please add URL address and short description.                    

Grundläggande Information om Tillägg

Namn Website to PDF Website to PDF
ID gkdcbpbinmenbpbnmihiddmmilgbahhe
Officiell webbadress https://chromewebstore.google.com/detail/website-to-pdf/gkdcbpbinmenbpbnmihiddmmilgbahhe
Beskrivning Convert entire website to PDF file
Filstorlek 140 KB
Antal Installationer 10,400
Aktuell Version 1.1
Senast Uppdaterad 2020-12-06
Publiceringsdatum 2019-04-02
Betyg 2.25/5 Totalt 36 Betyg
Utvecklare Nikolay Gechev
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Website to PDF",
    "description": "Convert entire website to PDF file",
    "icons": {
        "64": "printer64x64.png",
        "48": "printer48x48.png",
        "24": "printer24x24.png"
    },
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": []
}