iPrintPage Extension
Opens current web page with iPrintPage application.
iPrintPage Extensionคืออะไร?
iPrintPage Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oi.devmbox และคุณลักษณะหลักของมันคือ "Opens current web page with iPrintPage application."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย iPrintPage Extension
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } |