Hide and Seek
Add the ability to remember completes files to a github pr.
Was ist Hide and Seek?
Hide and Seek ist eine Chrome-Erweiterung, die von roush.kyle entwickelt wurde, und ihr Hauptmerkmal ist "Add the ability to remember completes files to a github pr.".
Erweiterungsscreenshots
Hide and Seek-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hide and Seek-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Hide and Seek |
ID | kfkehjgecfpkpknedlgjknlgcaeeekmo |
Offizielle URL | https://chromewebstore.google.com/detail/hide-and-seek/kfkehjgecfpkpknedlgjknlgcaeeekmo |
Beschreibung | Add the ability to remember completes files to a github pr. |
Dateigröße | 73.37 KB |
Installationsanzahl | 22 |
Aktuelle Version | 1.13.2 |
Letztes Update | 2018-08-22 |
Veröffentlichungsdatum | 2018-08-22 |
Bewertung | 4.67/5 Insgesamt 3 Bewertungen |
Entwickler | roush.kyle |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/kyleroush/PR-Hide-And-Seek |
Hilfeseite URL | https://github.com/kyleroush/PR-Hide-And-Seek |
Unterstützte Sprachen | 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" ] } ] } |