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