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 |
Eメール | [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" ] } |