Insert Signature

Insert a signature into a text field.

Cos'è Insert Signature?

Insert Signature è un'estensione di Chrome sviluppata da Nick Dollimount, e la sua funzione principale è "Insert a signature into a text field.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Insert Signature

Scarica i file di estensione Insert Signature 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

                        Insert a predefined signature text block to any text field.
Signature is placed at the cursor location.                    

Informazioni di Base sull'Estensione

Nome Insert Signature Insert Signature
ID popjgphflfnpefcncljdkaenmellboei
URL Ufficiale https://chrome.google.com/webstore/detail/insert-signature/popjgphflfnpefcncljdkaenmellboei
Descrizione Insert a signature into a text field.
Dimensione del File 23.16 KB
Conteggio Installazioni 8,973
Versione Corrente 0.0.0.5
Ultimo Aggiornamento 2014-07-29
Data di Pubblicazione 2014-07-29
Valutazione 3.09/5 Totale 11 Valutazioni
Sviluppatore Nick Dollimount
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Insert Signature",
    "description": "Insert a signature into a text field.",
    "version": "0.0.0.5",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "browser_action": {
        "default_icon": "128x128.png",
        "default_title": "Insert Signature Options",
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "backgroundScript.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "manifest_version": 2
}