Hide and Seek
Add the ability to remember completes files to a github pr.
Что такое Hide and Seek?
Hide and Seek - это расширение Chrome, разработанное roush.kyle, и его основная функция - "Add the ability to remember completes files to a github pr.".
Снимки экрана расширения
Скачать файл CRX расширения Hide and Seek
Скачайте файлы расширений Hide and Seek в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        This a tool to help make pull request easier.
It helps by letting you "complete" files.
* This will automatically hide the file
* When you revisit the page it will keep your completed files hidden
* However if there are changes to the file it will "uncomplete" the file and add a thinking emoji
You can also report bar of how much you have completed with your other diffstats
You can share your completion percentage with others when you submit a review to a PR                      Основная информация о расширении
| Название |   |  
| ID | kfkehjgecfpkpknedlgjknlgcaeeekmo | 
| Официальный URL | https://chromewebstore.google.com/detail/hide-and-seek/kfkehjgecfpkpknedlgjknlgcaeeekmo | 
| Описание | Add the ability to remember completes files to a github pr. | 
| Размер файла | 73.37 KB | 
| Количество установок | 22 | 
| Текущая Версия | 1.13.2 | 
| Последнее Обновление | 2018-08-22 | 
| Дата публикации | 2018-08-22 | 
| Рейтинг | 4.67/5 Всего 3 оценок | 
| Разработчик | roush.kyle | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Официальный сайт расширения | https://github.com/kyleroush/PR-Hide-And-Seek | 
| URL страницы помощи | https://github.com/kyleroush/PR-Hide-And-Seek | 
| Поддерживаемые языки | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Add the ability to remember completes files to a github pr.",
    "manifest_version": 2,
    "name": "Hide and Seek",
    "version": "1.13.2",
    "homepage_url": "https:\/\/github.com\/kyleroush\/PR-Hide-And-Seek\/",
    "icons": {
        "48": "logos\/PrPenguin48.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/PRUtils.js",
                "scripts\/Comments.js",
                "scripts\/DataStorage.js",
                "scripts\/GithubRestApi.js",
                "scripts\/HideAndSeek.js",
                "StartUp.js"
            ]
        }
    ]
}  |  |