A small Chrome addon to open a GitHub repo directly in GitHub1s.
- Download the latest stable release
- Unzipped the downloaded folder
- Open Chrome and go to
chrome://extensions/
- Enable developer mode
- Load Addon by clicking
Load unpacked
and pick the unzipped folder
If you want to add another service like GitPod, you can add a new createAction
to the injectionScript.js
and provide an object like below.
DomWorkerInstance.createAction({
TITLE: "Your Action",
FN: function () {
console.log("Hello World");
},
LOGO: `
<svg class="octicon octicon-desktop-download mr-3" viewBox="0 0 16 16" width="16" height="16" viewBox="0 0 16 16">
<!-- IMAGE -->
</svg>`
});