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…

What is Auto Open Print Dialog?

Auto Open Print Dialog is a Chrome extension developed by biajjachiemara, and its main feature is "Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…".

Extension Screenshots

Download Auto Open Print Dialog Extension CRX File

Download Auto Open Print Dialog extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Auto Open Print Dialog Auto Open Print Dialog
ID gemhjningnhcoefemidkplkfccamllje
Official URL https://chromewebstore.google.com/detail/auto-open-print-dialog/gemhjningnhcoefemidkplkfccamllje
Description Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…
File Size 153 KB
Installation Count 93
Current Version 1.8
Last Updated 2023-08-31
Publish Date 2023-08-30
Rating 2.50/5 Total 2 Ratings
Developer biajjachiemara
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}