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.
Co to jest Source Code Reader?
Source Code Reader to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Source Code Reader
Pobierz pliki rozszerzeń Source Code Reader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | odmaeindnajocepmmfjfconhggagbpnc |
Oficjalny URL | https://chromewebstore.google.com/detail/source-code-reader/odmaeindnajocepmmfjfconhggagbpnc |
Opis | This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader. |
Rozmiar pliku | 7.3 KB |
Liczba instalacji | 797 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2013-05-18 |
Data Publikacji | 2013-05-18 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Strona Rozszerzenia | http://blog.appharbor.com/2012/08/07/source-code-reader-browse-source-code-online |
Obsługiwane Języki | 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 } |