PDF Tools - Convert, Resize & Merge

Manipulate PDF documents via Ghostscript interpreter right in your browser!

Vad är PDF Tools - Convert, Resize & Merge?

PDF Tools - Convert, Resize & Merge är en Chrome-tillägg utvecklad av Sevina, och dess huvudfunktion är "Manipulate PDF documents via Ghostscript interpreter right in your browser!".

Tilläggsskärmbilder

screenshot

Ladda ner PDF Tools - Convert, Resize & Merge-förlängningens CRX-fil

Ladda ner PDF Tools - Convert, Resize & Merge-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

                        PDF Tools, is a simple add-on which allows you to easily manipulate (convert, resize, merge, etc.) PDF documents right in your browser.

It uses an open-source software called Ghostscript. Ghostscript is an engine for interpreting portable document formats (PDF) and postscript (PS). In order to get more info about Ghostscript please read this (https://en.wikipedia.org/wiki/Ghostscript) Wikipedia page. To download and install Ghostscript on your machine, please visit this (https://www.ghostscript.com/download/gsdnld.html) page.

This add-on uses nativeMessaging (https://developer.chrome.com/apps/nativeMessaging) technology to communicate with Ghostscript client on your machine. Before using this add-on, you need to install Ghostscript on your machine. You also need the native client patch in order to build the communication between Ghostscript and your browser.

Please visit this (https://github.com/alexmarcoo-nt/open-in-native-client/releases) GitHub repo and download the related patch for your machine. Follow the instruction in the above GitHub page in order to install the patch in your system. After installing, the "PDF Tools" add-on in your browser can communicate with the Ghostscript client on your machine (Window, Linux, or Mac).

If you have a feature request or found a bug to report, please fill the bug report form in the add-on's homepage (https://mybrowseraddon.com/pdf-tools.html).                    

Grundläggande Information om Tillägg

Namn PDF Tools - Convert, Resize & Merge PDF Tools - Convert, Resize & Merge
ID mgnjlfljmmnpkliogobdekjohjgfimpc
Officiell webbadress https://chromewebstore.google.com/detail/pdf-tools-convert-resize/mgnjlfljmmnpkliogobdekjohjgfimpc
Beskrivning Manipulate PDF documents via Ghostscript interpreter right in your browser!
Filstorlek 34.31 KB
Antal Installationer 480
Aktuell Version 0.1.4
Senast Uppdaterad 2023-11-29
Publiceringsdatum 2019-01-07
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Sevina
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://mybrowseraddon.com/pdf-tools.html
Hjälpsida URL https://mybrowseraddon.com/pdf-tools.html
URL till Sekretesspolicy Sidan https://mybrowseraddon.com/privacy-policy/developer/sevina.html
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.4",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "PDF Tools - Convert, Resize & Merge",
    "homepage_url": "https:\/\/mybrowseraddon.com\/pdf-tools.html",
    "description": "Manipulate PDF documents via Ghostscript interpreter right in your browser!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "downloads",
        "contextMenus",
        "nativeMessaging"
    ],
    "action": {
        "default_title": "PDF Tools - Convert, Resize & Merge",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}