Open in PDF Reader

Send PDF links directly to your favorite PDF viewer like Adobe Acrobat Reader

Open in PDF Readerคืออะไร?

Open in PDF Reader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rynu.smith และคุณลักษณะหลักของมันคือ "Send PDF links directly to your favorite PDF viewer like Adobe Acrobat Reader"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open in PDF Reader

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

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

                        The "Open in PDF viewer" extension opens PDF files directly in your favorite external PDF viewer application. To use the extension, right-click on a PDF link and select the "Open in PDF viewer" item. The extension downloads the PDF file in your default downloads directory and then executes the external command to open the downloaded file with the default PDF viewer (e.g. Adobe Acrobat Reader or FoxIt PDF reader).

Note that to execute an OS-level command, you need to install a native client. Native client installation guide appears on the first usage.

Features:
1. Open PDF files from right-click context menu
2. Transfer already opened PDF files to the external PDF viewer by pressing the browser's action button
3. Detect PDF links and open them with left-click
4. Open the external PDF viewer with a user-defined delay
5. Supports most common PDF viewers

Change Logs:
0.1.1:
It is now possible to define left-click open in default PDF reader from the options page. If this mode is enabled, the extension blocks the default action when a link with the PDF mime type is the target.
0.1.2:
It is possible to ask the extension to send the PDF URL to the external executable. Make sure your PDF Reader can open remote URLs before enabling this option
0.1.9:
You can now run the external executable with a delay. This helps your antivirus application to validate the PDF file before this extension opens it with the external PDF viewer.                    

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

ชื่อ Open in PDF Reader Open in PDF Reader
ID cehiomcamjpnfmemkmpjadaclohoibgo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-in-pdf-reader/cehiomcamjpnfmemkmpjadaclohoibgo
คำอธิบาย Send PDF links directly to your favorite PDF viewer like Adobe Acrobat Reader
ขนาดไฟล์ 49.1 KB
จำนวนการติดตั้ง 113,833
เวอร์ชันปัจจุบัน 0.3.2
อัปเดตครั้งล่าสุด 2022-12-15
วันที่เผยแพร่ 2020-05-12
คะแนน 3.51/5 รวมทั้งหมด 49 คะแนน
ผู้พัฒนา rynu.smith
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/open-in-pdf-reader.html
URL หน้าช่วยเหลือ https://webextension.org/listing/open-in-pdf-reader.html
URL หน้านโยบายความเป็นส่วนตัว https://add0n.com/policies/rynu.smith.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in PDF Reader",
    "description": "__MSG_description__",
    "version": "0.3.2",
    "manifest_version": 3,
    "default_locale": "en",
    "permissions": [
        "storage",
        "contextMenus",
        "notifications",
        "nativeMessaging",
        "downloads",
        "activeTab",
        "alarms"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/open-in-pdf-reader.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "options_ui": {
        "page": "data\/options\/index.html",
        "open_in_tab": true
    },
    "action": [],
    "content_scripts": [
        {
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "js": [
                "data\/inject.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "commands": {
        "_execute_action": {
            "description": "Press the action button"
        }
    }
}