OctoRef
Hightlight variable defenition, references
什么是OctoRef?
OctoRef是由restrry开发的Chrome扩展程序,该扩展的主要功能是“Hightlight variable defenition, references”。
扩展截图
下载OctoRef扩展crx文件
下载OctoRef扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Comfortable navigation through JavaScript or TypeScript sources on Github with adding ability to find all references for variable and its definitions.
HOW TO USE:
+ click – highlight references and definition
– clean highlightes
+ click (Mac: + click) – jump to next usage place, if not in the viewport
+ + click (Mac: + + click) – jump to definition
Report problems to https://github.com/restrry/octo-ref/issues 扩展基本信息
| 名称 | |
| ID | ohmmdeimnfadblenffiiheeegbgddpok |
| 官方URL | https://chrome.google.com/webstore/detail/octoref/ohmmdeimnfadblenffiiheeegbgddpok |
| 简介 | Hightlight variable defenition, references |
| 文件大小 | 3.61 MB |
| 安装次数 | 12 |
| 当前版本 | 0.1.0 |
| 更新时间 | 2018-09-24 |
| 上架时间 | 2018-09-24 |
| 开发者 | restrry |
| 付费类型 | free |
| 扩展官网 | https://github.com/restrry/octo-ref |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "OctoRef",
"description": "Hightlight variable defenition, references",
"version": "0.1.0",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "index.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/github.com\/*",
"https:\/\/gist.github.com\/*"
],
"js": [
".\/js\/contentscript.js"
],
"all_frames": false
}
],
"permissions": [
"activeTab",
"storage"
]
} | |