iPrintPage Extension

Opens current web page with iPrintPage application.

iPrintPage Extension क्या है?

iPrintPage Extension oi.devmbox द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Opens current web page with iPrintPage application."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में iPrintPage Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}