GitHub Issues Instant Solutions

Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.

Что такое GitHub Issues Instant Solutions?

GitHub Issues Instant Solutions - это расширение Chrome, разработанное Martin Galovic, и его основная функция - "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.".

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

screenshot
screenshot

Скачать файл CRX расширения GitHub Issues Instant Solutions

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

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

                        Find Github Issue solution instantly — just click "Jump to the solution" button                    

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

Название GitHub Issues Instant Solutions GitHub Issues Instant Solutions
ID efdnmggekpecdpgllnnlehdobkealhem
Официальный URL https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem
Описание Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
Размер файла 227 KB
Количество установок 67
Текущая Версия 1.0.5
Последнее Обновление 2020-02-29
Дата публикации 2020-02-29
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Martin Galovic
Тип оплаты free
Официальный сайт расширения https://issues.martingalovic.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Issues Instant Solutions",
    "version": "1.0.5",
    "description": "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.",
    "icons": {
        "16": "public\/icons\/icon_16.png",
        "48": "public\/icons\/icon_48.png",
        "128": "public\/icons\/icon_128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "public\/background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/www.github.com\/*",
                "http:\/\/github.com\/*",
                "http:\/\/www.github.com\/*"
            ],
            "css": [
                "public\/github_content_styles.css"
            ],
            "js": [
                "public\/underscore.min.js",
                "public\/jquery.min.js",
                "public\/github_content_script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/www.github.com\/*",
        "http:\/\/github.com\/*",
        "http:\/\/www.github.com\/*"
    ],
    "browser_action": {
        "default_icon": "public\/icons\/icon_16.png",
        "default_popup": "public\/html\/popup.html"
    }
}