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 - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension adds an Browse button to the toolbar which allows you to browse the current GitHub repo using Source Code Reader.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Source Code Reader

Скачайте файлы расширений 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
}