Hide and Seek
Add the ability to remember completes files to a github pr.
O que é Hide and Seek?
Hide and Seek é uma extensão do Chrome desenvolvida por roush.kyle, e sua principal característica é "Add the ability to remember completes files to a github pr.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hide and Seek
Baixe arquivos de extensão Hide and Seek no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 diffstatsYou can share your completion percentage with others when you submit a review to a PR
Informações Básicas da Extensão
Nome | Hide and Seek |
ID | kfkehjgecfpkpknedlgjknlgcaeeekmo |
URL Oficial | https://chromewebstore.google.com/detail/hide-and-seek/kfkehjgecfpkpknedlgjknlgcaeeekmo |
Descrição | Add the ability to remember completes files to a github pr. |
Tamanho do Arquivo | 73.37 KB |
Contagem de Instalações | 22 |
Versão Atual | 1.13.2 |
Última Atualização | 2018-08-22 |
Data de Publicação | 2018-08-22 |
Classificação | 4.67/5 Total de 3 Avaliações |
Desenvolvedor | roush.kyle |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/kyleroush/PR-Hide-And-Seek |
URL da Página de Ajuda | https://github.com/kyleroush/PR-Hide-And-Seek |
Idiomas Suportados | 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" ] } ] } |