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 diffstats
You can share your completion percentage with others when you submit a review to a PR 擴展基本資訊
| 名稱 | |
| ID | kfkehjgecfpkpknedlgjknlgcaeeekmo |
| 官方網址 | 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"
]
}
]
} | |