QuickText

QuickText allows you to simply paste predefined texts into text fields.

Cos'è QuickText?

QuickText è un'estensione di Chrome sviluppata da https://www.pixiz.com, e la sua funzione principale è "QuickText allows you to simply paste predefined texts into text fields.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione QuickText

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

                        QuickText allows you to simply paste predefined texts into text fields.                    

Informazioni di Base sull'Estensione

Nome QuickText QuickText
ID neflkikppleikkghgjheajjpdjaihlch
URL Ufficiale https://chromewebstore.google.com/detail/quicktext/neflkikppleikkghgjheajjpdjaihlch
Descrizione QuickText allows you to simply paste predefined texts into text fields.
Dimensione del File 27.11 KB
Conteggio Installazioni 1,181
Versione Corrente 0.8
Ultimo Aggiornamento 2020-05-04
Data di Pubblicazione 2020-05-03
Valutazione 4.33/5 Totale 6 Valutazioni
Sviluppatore https://www.pixiz.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickText",
    "short_name": "QuickText",
    "version": "0.8",
    "author": "Dady",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}