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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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"
}