Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.

runmaxde/chrome-github-open-with-github1s

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

chrome-github-open-with-github1s

A small Chrome addon to open a GitHub repo directly in GitHub1s.

Demo

image

Installation

  1. Download the latest stable release

Download latest

  1. Unzipped the downloaded folder

image

  1. Open Chrome and go to chrome://extensions/

image

  1. Enable developer mode

image

  1. Load Addon by clicking Load unpacked and pick the unzipped folder

image

Expand / API

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>`
});