OpenGL Documentation Search

This extension adds a regular expression search bar for OpenGL apis.

ما هو OpenGL Documentation Search؟

OpenGL Documentation Search هو إضافة Chrome تم تطويرها بواسطة zaucy، والميزة الرئيسية لها هي "This extension adds a regular expression search bar for OpenGL apis.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة OpenGL Documentation Search

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

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

                        Adds regular expression search bad to the opengl man pages. Currently only works for man4 and man.                    

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

الاسم OpenGL Documentation Search OpenGL Documentation Search
ID kpmkkealajaeilgpgilgcjhjlmoanoce
عنوان URL الرسمي https://chromewebstore.google.com/detail/opengl-documentation-sear/kpmkkealajaeilgpgilgcjhjlmoanoce
الوصف This extension adds a regular expression search bar for OpenGL apis.
حجم الملف 3.82 KB
عدد التثبيتات 221
النسخة الحالية 0.0.1
آخر تحديث 2014-03-14
تاريخ النشر 2014-03-13
تقييم 4.67/5 مجموع تقييمات 3
المطور zaucy
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OpenGL Documentation Search",
    "description": "This extension adds a regular expression search bar for OpenGL apis.",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.opengl.org\/sdk\/docs\/man4\/html\/index.php*",
                "*:\/\/*.opengl.org\/sdk\/docs\/man4\/html\/indexflat.php*",
                "*:\/\/*.opengl.org\/sdk\/docs\/man\/html\/index.php*",
                "*:\/\/*.opengl.org\/sdk\/docs\/man\/html\/indexflat.php*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ]
}