VS code Text Completer

Completes your text, inspired by the VS code text completer

什么是VS code Text Completer?

VS code Text Completer是由Ephrem Adugna开发的Chrome扩展程序,该扩展的主要功能是“Completes your text, inspired by the VS code text completer”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载VS code Text Completer扩展crx文件

下载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
}