Hide and Seek

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

Cos'è Hide and Seek?

Hide and Seek è un'estensione di Chrome sviluppata da roush.kyle, e la sua funzione principale è "Add the ability to remember completes files to a github pr.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Hide and Seek

Scarica i file di estensione Hide and Seek in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Hide and Seek Hide and Seek
ID kfkehjgecfpkpknedlgjknlgcaeeekmo
URL Ufficiale https://chromewebstore.google.com/detail/hide-and-seek/kfkehjgecfpkpknedlgjknlgcaeeekmo
Descrizione Add the ability to remember completes files to a github pr.
Dimensione del File 73.37 KB
Conteggio Installazioni 22
Versione Corrente 1.13.2
Ultimo Aggiornamento 2018-08-22
Data di Pubblicazione 2018-08-22
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore roush.kyle
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kyleroush/PR-Hide-And-Seek
URL della Pagina di Aiuto https://github.com/kyleroush/PR-Hide-And-Seek
Lingue Supportate 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"
            ]
        }
    ]
}