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
官方網址 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
}