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.”。

扩展截图

screenshot

下载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.                    

扩展基本信息

名称 Source Code Reader Source Code Reader
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
}