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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}