iPrintPage Extension

Opens current web page with iPrintPage application.

Что такое iPrintPage Extension?

iPrintPage Extension - это расширение Chrome, разработанное oi.devmbox, и его основная функция - "Opens current web page with iPrintPage application.".

Снимки экрана расширения

screenshot

Скачать файл 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 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"
}