iPrintPage Extension

Opens current web page with iPrintPage application.

什麼是iPrintPage Extension?

iPrintPage Extension是由oi.devmbox開發的Chrome擴展程式,該擴展的主要功能是“Opens current web page with iPrintPage application.”。

擴展截圖

screenshot

下載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 iPrintPage Extension
ID gcgjkboeenpgohojgagdplcgdaemdibf
官方網址 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"
}