ImageRight PDF Import

Import PDF files into ImageRight

ImageRight PDF Importคืออะไร?

ImageRight PDF Import เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vertafore, Inc. และคุณลักษณะหลักของมันคือ "Import PDF files into ImageRight"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ImageRight PDF Import

ดาวน์โหลดไฟล์ส่วนขยาย ImageRight PDF Import ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Import PDF files into ImageRight via single click without printing and saving locally.

ImageRight PDF Import is a simple and lite extension that allows to easily import a PDF file open in the active browser tab into ImageRight. PDF file size remains the same after the import is complete.

Before using the extension, please make sure that the ImageRight Desktop or ImageRight Connect (Used for Browser Client) is running.

To successfully import a PDF file into the ImageRight, open a PDF file in the browser window and single click the extension icon. If ImageRight Connect is running, the imported PDF file will appear in the import bin. If only ImageRight Desktop is running, the standard ImageRight Desktop import window will open. 

The ImageRight Import is available for ImageRight version 6.9 and higher, and is available with a hotfix for version 6.8.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ImageRight PDF Import ImageRight PDF Import
ID lmjkddpocmpfpfelefmjeikplccmchaj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/imageright-pdf-import/lmjkddpocmpfpfelefmjeikplccmchaj
คำอธิบาย Import PDF files into ImageRight
ขนาดไฟล์ 666 KB
จำนวนการติดตั้ง 24,863
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2020-12-03
วันที่เผยแพร่ 2019-11-20
ผู้พัฒนา Vertafore, Inc.
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ImageRight PDF Import",
    "version": "1.0.1",
    "author": "Vertafore, Inc.",
    "description": "Import PDF files into ImageRight",
    "permissions": [
        "contextMenus",
        "tabs",
        "background",
        "storage",
        "notifications",
        "file:\/\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/platformService.js",
            "js\/messages.js",
            "js\/config.js",
            "js\/utils.js",
            "js\/background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/icon150.png"
    ],
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": "images\/icon150.png",
        "default_title": "ImageRight PDF Import"
    },
    "options_ui": {
        "page": "html\/settings.html",
        "open_in_tab": true
    },
    "commands": {
        "import-pdf": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "Import PDF files into ImageRight"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/platformService.js",
                "js\/contentScript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "150": "images\/icon150.png"
    }
}