GitHub go to line number
Open-source extension which adds a go to line number modal right into GitHub
什么是GitHub go to line number?
GitHub go to line number是由NicoSantangelo开发的Chrome扩展程序,该扩展的主要功能是“Open-source extension which adds a go to line number modal right into GitHub”。
扩展截图
下载GitHub go to line number扩展crx文件
下载GitHub go to line number扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If you ever wanted to find a particular line number on GitHub and grew frustrated because Chrome refuses to find it, this is for you. The modal is toggled pressing ctrl+g and supports both diffs and single code files. You can cycle throughout the results using the enter key to move forward and shift+enter to move backwards.
扩展基本信息
名称 | GitHub go to line number |
ID | cbpdahjcomdapkaojlbhbbmopbmbecio |
官方URL | https://chromewebstore.google.com/detail/github-go-to-line-number/cbpdahjcomdapkaojlbhbbmopbmbecio |
简介 | Open-source extension which adds a go to line number modal right into GitHub |
文件大小 | 16.24 KB |
安装次数 | 103 |
当前版本 | 1.2.0 |
更新时间 | 2016-07-19 |
上架时间 | 2016-07-18 |
评分 | 5.00/5 共4次评分 |
开发者 | NicoSantangelo |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/NicoSantangelo/github-go-to-line-number |
隐私政策页面URL | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub go to line number", "description": "Open-source extension which adds a go to line number modal right into GitHub", "short_name": "Github goto", "version": "1.2.0", "icons": { "16": "icons\/16.png", "19": "icons\/19.png", "38": "icons\/38.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.github.com\/*", "http:\/\/www.github.com\/*", "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "permissions": [], "web_accessible_resources": [ "modal.html" ] } |