Hide and Seek
Add the ability to remember completes files to a github pr.
什么是Hide and Seek?
Hide and Seek是由roush.kyle开发的Chrome扩展程序,该扩展的主要功能是“Add the ability to remember completes files to a github pr.”。
扩展截图
下载Hide and Seek扩展crx文件
下载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 diffstatsYou can share your completion percentage with others when you submit a review to a PR
扩展基本信息
名称 | Hide and Seek |
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" ] } ] } |