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…

Qu'est-ce que Auto Open Print Dialog ?

Auto Open Print Dialog est une extension Chrome développée par biajjachiemara, et sa fonction principale est "Detects if a Chrome browser tab contains a URL to a PDF file (or any printable document extension which can be listed under…".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Auto Open Print Dialog

Téléchargez les fichiers d'extension Auto Open Print Dialog au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Auto Open Print Dialog Auto Open Print Dialog
ID gemhjningnhcoefemidkplkfccamllje
URL Officiel 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…
Taille du Fichier 153 KB
Nombre d'Installations 93
Version Actuelle 1.8
Dernière Mise à Jour 2023-08-31
Date de Publication 2023-08-30
Évaluation 2.50/5 Total 2 Évaluations
Développeur biajjachiemara
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}