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 |
官方網址 | 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 } |