iPrintPage Extension

Opens current web page with iPrintPage application.

Hvad er iPrintPage Extension?

iPrintPage Extension er en Chrome-udvidelse udviklet af oi.devmbox, og dens hovedfunktion er "Opens current web page with iPrintPage application.".

Udvidelsesskærmbilleder

screenshot

Download iPrintPage Extension-udvidelses-CRX-fil

Download iPrintPage Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Opens current web page with iPrintPage app available for macOS. So, first you must install the app (v1.3 or later) on your Mac available at: https://fieryo.github.io/
iPrintPage is a utility that allows printing in text mode. It's especially useful for printing on continuous paper on Dot Matrix Printers. To achieve this, it converts HTML to plain text, preserving the formatting as much as possible. This allows fast and legible printing without any gaps on continuous paper. With this app you will reduce paper waste and printing time.                    

Grundlæggende oplysninger om udvidelsen

Navn iPrintPage Extension iPrintPage Extension
ID gcgjkboeenpgohojgagdplcgdaemdibf
Officiel URL https://chromewebstore.google.com/detail/iprintpage-extension/gcgjkboeenpgohojgagdplcgdaemdibf
Beskrivelse Opens current web page with iPrintPage application.
Filstørrelse 18.98 KB
Antal Installationer 108
Nuværende Version 1.3
Senest Opdateret 2020-09-10
Udgivelsesdato 2020-09-10
Udvikler oi.devmbox
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://fieryo.github.io/
Hjælpeside-URL https://github.com/fieryo/fieryo.github.io/issues
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "iPrintPage Extension",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Opens current web page with iPrintPage application.",
    "background": {
        "page": "bg.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "webcont.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Open with iPrintPage",
        "default_icon": "main128.png",
        "default_popup": "main.html"
    },
    "icons": {
        "16": "main16.png",
        "48": "main48.png",
        "128": "main128.png"
    },
    "permissions": [
        "activeTab",
        "nativeMessaging"
    ],
    "minimum_chrome_version": "38"
}