iPrintPage Extension
Opens current web page with iPrintPage application.
iPrintPage Extensionとは何ですか?
iPrintPage Extensionはoi.devmboxによって開発されたChromeの拡張機能で、その主な機能は「Opens current web page with iPrintPage application.」です。
拡張機能のスクリーンショット
iPrintPage Extension拡張機能のCRXファイルをダウンロード
iPrintPage Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | iPrintPage Extension |
ID | gcgjkboeenpgohojgagdplcgdaemdibf |
公式URL | https://chromewebstore.google.com/detail/iprintpage-extension/gcgjkboeenpgohojgagdplcgdaemdibf |
説明 | Opens current web page with iPrintPage application. |
ファイルサイズ | 18.98 KB |
インストール数 | 108 |
現在のバージョン | 1.3 |
最終更新日 | 2020-09-10 |
公開日 | 2020-09-10 |
開発者 | oi.devmbox |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://fieryo.github.io/ |
ヘルプページのURL | https://github.com/fieryo/fieryo.github.io/issues |
対応言語 | 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" } |