Github PRs viewer

Check your open/assigned pull requests without opening Github

Что такое Github PRs viewer?

Github PRs viewer - это расширение Chrome, разработанное tomas.shrewsbury, и его основная функция - "Check your open/assigned pull requests without opening Github".

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

screenshot

Скачать файл CRX расширения Github PRs viewer

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

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

                        Permite ver PRs de Github de una manera mucho mas comoda y rapida!                    

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

Название Github PRs viewer Github PRs viewer
ID fcggaaokidkfpkhjflegbbjpojnkhelc
Официальный URL https://chromewebstore.google.com/detail/github-prs-viewer/fcggaaokidkfpkhjflegbbjpojnkhelc
Описание Check your open/assigned pull requests without opening Github
Размер файла 3.48 MB
Количество установок 25
Текущая Версия 2.0.3
Последнее Обновление 2020-05-18
Дата публикации 2020-05-18
Рейтинг 5.00/5 Всего 3 оценок
Разработчик tomas.shrewsbury
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://candidates.flycricket.io/privacy.html
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github PRs viewer",
    "short_name": "Github PRs",
    "version": "2.0.3",
    "description": "Check your open\/assigned pull requests without opening Github",
    "author": "Tomas Shrewsbury",
    "icons": {
        "64": "icons\/icon-logo.png",
        "128": "icons\/icon-logo.png"
    },
    "browser_action": {
        "default_title": "Github Buddy",
        "default_popup": "index.html"
    },
    "background": {
        "scripts": [
            ".\/oauth2\/oauth2.js",
            ".\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/robots.txt*"
            ],
            "js": [
                ".\/oauth2\/oauth2_inject.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/github.com\/login\/oauth\/access_token",
        "idle",
        "notifications",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "oauth2\/oauth2.html"
    ]
}