iPrintPage Extension

Opens current web page with iPrintPage application.

iPrintPage Extension là gì?

iPrintPage Extension là một tiện ích mở rộng Chrome được phát triển bởi oi.devmbox, và tính năng chính của nó là "Opens current web page with iPrintPage application.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng iPrintPage Extension

Tải xuống các tệp mở rộng iPrintPage Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên iPrintPage Extension iPrintPage Extension
ID gcgjkboeenpgohojgagdplcgdaemdibf
URL Chính Thức https://chromewebstore.google.com/detail/iprintpage-extension/gcgjkboeenpgohojgagdplcgdaemdibf
Mô tả Opens current web page with iPrintPage application.
Kích Thước Tệp 18.98 KB
Số Lần Cài Đặt 108
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2020-09-10
Ngày Phát Hành 2020-09-10
Nhà Phát Triển oi.devmbox
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://fieryo.github.io/
URL Trang Trợ Giúp https://github.com/fieryo/fieryo.github.io/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}