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은(는) biajjachiemara에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}