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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}