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.
Was ist Source Code Reader?
Source Code Reader ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.".
Erweiterungsscreenshots
Source Code Reader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Source Code Reader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | odmaeindnajocepmmfjfconhggagbpnc |
Offizielle URL | https://chromewebstore.google.com/detail/source-code-reader/odmaeindnajocepmmfjfconhggagbpnc |
Beschreibung | This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader. |
Dateigröße | 7.3 KB |
Installationsanzahl | 797 |
Aktuelle Version | 1.0 |
Letztes Update | 2013-05-18 |
Veröffentlichungsdatum | 2013-05-18 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Erweiterungswebsite | http://blog.appharbor.com/2012/08/07/source-code-reader-browse-source-code-online |
Unterstützte Sprachen | 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 } |