VS code Text Completer

Completes your text, inspired by the VS code text completer

Что такое VS code Text Completer?

VS code Text Completer - это расширение Chrome, разработанное Ephrem Adugna, и его основная функция - "Completes your text, inspired by the VS code text completer".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения VS code Text Completer

Скачайте файлы расширений VS code Text Completer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название VS code Text Completer VS code Text Completer
ID bbfpjmlnbgaklbmjmbmefkkpnekbblij
Официальный URL https://chromewebstore.google.com/detail/vs-code-text-completer/bbfpjmlnbgaklbmjmbmefkkpnekbblij
Описание Completes your text, inspired by the VS code text completer
Размер файла 77.53 KB
Количество установок 32
Текущая Версия 1.1
Последнее Обновление 2020-12-20
Дата публикации 2020-12-14
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Ephrem Adugna
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
}