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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
}