Source Code Reader
This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.
Source Code Readerとは何ですか?
Source Code ReaderはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.」です。
拡張機能のスクリーンショット
Source Code Reader拡張機能のCRXファイルをダウンロード
Source Code Reader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Source Code Reader is a web application which basically allows a user to open a publically hosted .NET C# project on Github and navigate through the code seamlessly. It allows a user to navigate directly to the implementation code from the calling code with single click (similar to the Go To Definition feature available in Microsoft Visual Studio). Source code hosting providers like GitHub, Bitbucket, CodePlex and Google Code only provide provide basic file browsing capabilities. Source Code Reader does much more than files browsing; it understands the semantics of the code to give superior code navigation functionality.
拡張機能の基本情報
名前 | |
ID | odmaeindnajocepmmfjfconhggagbpnc |
公式URL | https://chromewebstore.google.com/detail/source-code-reader/odmaeindnajocepmmfjfconhggagbpnc |
説明 | This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader. |
ファイルサイズ | 7.3 KB |
インストール数 | 797 |
現在のバージョン | 1.0 |
最終更新日 | 2013-05-18 |
公開日 | 2013-05-18 |
評価 | 3.00/5 合計 2 レビュー |
開発者 | Unknown |
支払い方法 | free |
拡張機能のウェブサイト | http://blog.appharbor.com/2012/08/07/source-code-reader-browse-source-code-online |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Source Code Reader", "version": "1.0", "description": "This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs" ], "browser_action": { "default_title": "Browse Repo in Source Code Reader", "default_icon": "icon.png" }, "manifest_version": 2 } |