Auto Open Print Dialog

Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…

Auto Open Print Dialogคืออะไร?

Auto Open Print Dialog เป็นส่วนขยายของ Chrome ที่พัฒนาโดย biajjachiemara และคุณลักษณะหลักของมันคือ "Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…"

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Open Print Dialog

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

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

                        Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under options), and if so, automatically opens the printer dialog prompt for the user to print the document.                    

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

ชื่อ Auto Open Print Dialog Auto Open Print Dialog
ID gemhjningnhcoefemidkplkfccamllje
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/auto-open-print-dialog/gemhjningnhcoefemidkplkfccamllje
คำอธิบาย Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…
ขนาดไฟล์ 153 KB
จำนวนการติดตั้ง 93
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2023-08-31
วันที่เผยแพร่ 2023-08-30
คะแนน 2.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา biajjachiemara
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto Open Print Dialog",
    "version": "1.8",
    "author": "Biajja Chiemara",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icons\/icon16.png",
        "24": "icons\/icon24.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "192": "icons\/icon192.png",
        "256": "icons\/icon256.png"
    },
    "action": {
        "default_title": "PM Auto Open Print Dialog",
        "default_icon": {
            "19": "icons\/default.png",
            "38": "icons\/[email protected]"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}