Go Doc Tooltip

Show go doc's function description as tooltip of function list

ما هو Go Doc Tooltip؟

Go Doc Tooltip هو إضافة Chrome تم تطويرها بواسطة butaixianran، والميزة الرئيسية لها هي "Show go doc's function description as tooltip of function list".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Go Doc Tooltip

قم بتنزيل ملفات الامتداد Go Doc Tooltip بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This is for golang users.

When you're at official doc site, this extension will show function's description as tooltip on function list. 

So you don't need to scroll down that long list page anymore.

Github: 
https://github.com/diankong/GoDocTooltip                    

معلومات أساسية عن التمديد

الاسم Go Doc Tooltip Go Doc Tooltip
ID fjbnfgkjpcnhbhfdnegofefhgpjafjjl
عنوان URL الرسمي https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl
الوصف Show go doc's function description as tooltip of function list
حجم الملف 16.01 KB
عدد التثبيتات 100
النسخة الحالية 0.0.7
آخر تحديث 2022-12-03
تاريخ النشر 2020-04-20
تقييم 4.67/5 مجموع تقييمات 3
المطور butaixianran
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Go Doc Tooltip",
    "short_name": "gdt",
    "version": "0.0.7",
    "description": "Show go doc's function description as tooltip of function list",
    "author": "butaixianran",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/golang.org\/pkg\/*",
                "https:\/\/godoc.org\/*",
                "https:\/\/pkg.go.dev\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}