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.

Apa itu Source Code Reader?

Source Code Reader adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Source Code Reader

Unduh file ekstensi Source Code Reader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Source Code Reader Source Code Reader
ID odmaeindnajocepmmfjfconhggagbpnc
URL Resmi https://chromewebstore.google.com/detail/source-code-reader/odmaeindnajocepmmfjfconhggagbpnc
Deskripsi This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.
Ukuran File 7.3 KB
Jumlah Instalasi 797
Versi Saat Ini 1.0
Terakhir Diperbarui 2013-05-18
Tanggal Publikasi 2013-05-18
Penilaian 3.00/5 Total 2 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Situs Ekstensi http://blog.appharbor.com/2012/08/07/source-code-reader-browse-source-code-online
Bahasa yang Didukung 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
}