Hide and Seek

Add the ability to remember completes files to a github pr.

¿Qué es Hide and Seek?

Hide and Seek es una extensión de Chrome desarrollada por roush.kyle, y su función principal es "Add the ability to remember completes files to a github pr.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Hide and Seek

Descarga archivos de extensión Hide and Seek en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Hide and Seek Hide and Seek
ID kfkehjgecfpkpknedlgjknlgcaeeekmo
URL Oficial https://chromewebstore.google.com/detail/hide-and-seek/kfkehjgecfpkpknedlgjknlgcaeeekmo
Descripción Add the ability to remember completes files to a github pr.
Tamaño del Archivo 73.37 KB
Cantidad de Instalaciones 22
Versión Actual 1.13.2
Última Actualización 2018-08-22
Fecha de Publicación 2018-08-22
Calificación 4.67/5 Total de 3 Calificaciones
Desarrollador roush.kyle
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/kyleroush/PR-Hide-And-Seek
URL de la Página de Ayuda https://github.com/kyleroush/PR-Hide-And-Seek
Idiomas Soportados 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"
            ]
        }
    ]
}