VS code Text Completer

Completes your text, inspired by the VS code text completer

Cos'è VS code Text Completer?

VS code Text Completer è un'estensione di Chrome sviluppata da Ephrem Adugna, e la sua funzione principale è "Completes your text, inspired by the VS code text completer".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione VS code Text Completer

Scarica i file di estensione VS code Text Completer 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

                        An extension inspired by the Visual Studio Code text completer. This extension makes it quick and easy to have your text completed in a free and aesthetically pleasing way. The extension learns from you, so the more you type, the better your suggestions become. 
In this update, the extension's size has become smaller and the suggestions have been fixed.                    

Informazioni di Base sull'Estensione

Nome VS code Text Completer VS code Text Completer
ID bbfpjmlnbgaklbmjmbmefkkpnekbblij
URL Ufficiale https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij
Descrizione Completes your text, inspired by the VS code text completer
Dimensione del File 77.53 KB
Conteggio Installazioni 32
Versione Corrente 1.1
Ultimo Aggiornamento 2020-12-20
Data di Pubblicazione 2020-12-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Ephrem Adugna
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VS code Text Completer",
    "version": "1.1",
    "description": "Completes your text, inspired by the VS code text completer",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "contextMenus"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.com\/*"
            ],
            "css": [
                "background-styles.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}