OpenGL Documentation Search
This extension adds a regular expression search bar for OpenGL apis.
OpenGL Documentation Searchとは何ですか?
OpenGL Documentation Searchはzaucyによって開発されたChromeの拡張機能で、その主な機能は「This extension adds a regular expression search bar for OpenGL apis.」です。
拡張機能のスクリーンショット
OpenGL Documentation Search拡張機能のCRXファイルをダウンロード
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 |
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" } ] } |