iPrintPage Extension
Opens current web page with iPrintPage application.
Was ist iPrintPage Extension?
iPrintPage Extension ist eine Chrome-Erweiterung, die von oi.devmbox entwickelt wurde, und ihr Hauptmerkmal ist "Opens current web page with iPrintPage application.".
Erweiterungsscreenshots
iPrintPage Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie iPrintPage Extension-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
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.
Grundlegende Informationen zur Erweiterung
Name | iPrintPage Extension |
ID | gcgjkboeenpgohojgagdplcgdaemdibf |
Offizielle URL | https://chromewebstore.google.com/detail/iprintpage-extension/gcgjkboeenpgohojgagdplcgdaemdibf |
Beschreibung | Opens current web page with iPrintPage application. |
Dateigröße | 18.98 KB |
Installationsanzahl | 108 |
Aktuelle Version | 1.3 |
Letztes Update | 2020-09-10 |
Veröffentlichungsdatum | 2020-09-10 |
Entwickler | oi.devmbox |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://fieryo.github.io/ |
Hilfeseite URL | https://github.com/fieryo/fieryo.github.io/issues |
Unterstützte Sprachen | 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" } |