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…

Cos'è Auto Open Print Dialog?

Auto Open Print Dialog è un'estensione di Chrome sviluppata da biajjachiemara, e la sua funzione principale è "Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Auto Open Print Dialog

Scarica i file di estensione Auto Open Print Dialog in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Auto Open Print Dialog Auto Open Print Dialog
ID gemhjningnhcoefemidkplkfccamllje
URL Ufficiale https://chromewebstore.google.com/detail/auto-open-print-dialog/gemhjningnhcoefemidkplkfccamllje
Descrizione Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…
Dimensione del File 153 KB
Conteggio Installazioni 93
Versione Corrente 1.8
Ultimo Aggiornamento 2023-08-31
Data di Pubblicazione 2023-08-30
Valutazione 2.50/5 Totale 2 Valutazioni
Sviluppatore biajjachiemara
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}