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…

Was ist Auto Open Print Dialog?

Auto Open Print Dialog ist eine Chrome-Erweiterung, die von biajjachiemara entwickelt wurde, und ihr Hauptmerkmal ist "Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…".

Erweiterungsscreenshots

Auto Open Print Dialog-Erweiterungs-CRX-Datei herunterladen

Laden Sie Auto Open Print Dialog-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Auto Open Print Dialog Auto Open Print Dialog
ID gemhjningnhcoefemidkplkfccamllje
Offizielle URL https://chromewebstore.google.com/detail/auto-open-print-dialog/gemhjningnhcoefemidkplkfccamllje
Beschreibung Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…
Dateigröße 153 KB
Installationsanzahl 93
Aktuelle Version 1.8
Letztes Update 2023-08-31
Veröffentlichungsdatum 2023-08-30
Bewertung 2.50/5 Insgesamt 2 Bewertungen
Entwickler biajjachiemara
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}