Open in Code

This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code

Co to jest Open in Code?

Open in Code to rozszerzenie Chrome opracowane przez Mohamad Jahani, a jego główną funkcją jest „This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Open in Code

Pobierz pliki rozszerzeń Open in Code 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

                        This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code.

This project is a free software. The source code is available in the following repository under MIT license.
https://github.com/mamal72/open-in-code                    

Podstawowe informacje o rozszerzeniu

Nazwa Open in Code Open in Code
ID pojigilicipchiacceabcigkhkjhdcie
Oficjalny URL https://chromewebstore.google.com/detail/open-in-code/pojigilicipchiacceabcigkhkjhdcie
Opis This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code
Rozmiar pliku 15.18 KB
Liczba instalacji 255
Aktualna Wersja 0.2.3
Ostatnia Aktualizacja 2017-05-28
Data Publikacji 2017-05-27
Ocena 2.67/5 Łącznie 3 Oceny
Deweloper Mohamad Jahani
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/mamal72/open-in-code
Adres URL Strony Pomocy https://github.com/mamal72/open-in-code/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in Code",
    "version": "0.2.3",
    "manifest_version": 2,
    "description": "This extension downloads and opens current viewing Github file in Microsoft Visual Studio Code",
    "homepage_url": "https:\/\/github.com\/mamal72\/open-in-code",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Open in Code"
    },
    "permissions": [
        "tabs",
        "downloads",
        "downloads.shelf",
        "https:\/\/github.com\/*"
    ]
}