OpenGL Documentation Search

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

What is OpenGL Documentation Search?

OpenGL Documentation Search is a Chrome extension developed by zaucy, and its main feature is "This extension adds a regular expression search bar for OpenGL apis.".

Extension Screenshots

screenshot
screenshot

Download OpenGL Documentation Search Extension CRX File

Download OpenGL Documentation Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name OpenGL Documentation Search OpenGL Documentation Search
ID kpmkkealajaeilgpgilgcjhjlmoanoce
Official URL https://chromewebstore.google.com/detail/opengl-documentation-sear/kpmkkealajaeilgpgilgcjhjlmoanoce
Description This extension adds a regular expression search bar for OpenGL apis.
File Size 3.82 KB
Installation Count 221
Current Version 0.0.1
Last Updated 2014-03-14
Publish Date 2014-03-13
Rating 4.67/5 Total 3 Ratings
Developer zaucy
Payment Type free
Supported Languages 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"
        }
    ]
}