Open in GitHub1s

Add a new navigation option to open GitHub repositories in GitHub1s.

Что такое Open in GitHub1s?

Open in GitHub1s - это расширение Chrome, разработанное zacharysmith, и его основная функция - "Add a new navigation option to open GitHub repositories in GitHub1s.".

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

screenshot

Скачать файл CRX расширения Open in GitHub1s

Скачайте файлы расширений Open in GitHub1s в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        GitHub1s is a web-app for viewing GitHub repository files online, using a web-compiled version of VSCode. This extension introduces a new UI button to the GitHub repository file navigation bar, enabling users to easily open the repository inside the GitHub1s website.                    

Основная информация о расширении

Название Open in GitHub1s Open in GitHub1s
ID iijaagbkdohcopmmohlgfkcloefoeaoj
Официальный URL https://chromewebstore.google.com/detail/open-in-github1s/iijaagbkdohcopmmohlgfkcloefoeaoj
Описание Add a new navigation option to open GitHub repositories in GitHub1s.
Размер файла 127 KB
Количество установок 1,601
Текущая Версия 1.5
Последнее Обновление 2022-05-10
Дата публикации 2021-08-18
Разработчик zacharysmith
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Cutwell/github1s-chrome-extension
URL страницы помощи https://github.com/Cutwell/github1s-chrome-extension
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in GitHub1s",
    "version": "1.5",
    "description": "Add a new navigation option to open GitHub repositories in GitHub1s.",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "data\/img\/icon48.png",
            "128": "data\/img\/icon128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "48": "data\/img\/icon48.png",
        "128": "data\/img\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "data\/js\/content.js"
            ],
            "css": [
                "data\/css\/extension.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}