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

tsukinoko-kun/codequest.ext

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Codequest Browser Extension

Add code snippets to your WhatsApp messages.

Screenshot

Test:

Build

Use markdown syntax

Write a markdown code block in your message:

```rust
fn main() {
    for x in 1..=100 {
        match (x % 3, x % 5) {
            (0, 0) => println!("FizzBuzz"),
            (0, _) => println!("Fizz"),
            (_, 0) => println!("Buzz"),
            _ => println!("{}", x),
        }
    }
}
```

Use the CodeQuest Website

Upload your code to https://codequest.frank-mayer.io and share a link to the rendered image.

Install from a store

Chrome Web Store Firefox Store

Build

Using npm

Install dependencies

npm install

Compile code

npm run build

Installation

Make sure the extension is build before you install it.

Chrome

You have to remove the browser_specific_settings from the manifest.json when building for Chrome.

  1. At the top right, click More ⋮ > More tools > Extensions or go to chrome://extensions.
  2. Enable Developer mode at the top right corner.
  3. Click Load unpacked at the top left corner.
  4. Choose this repository.

Firefox (temporarily)

  1. Go to about:debugging#/runtime/this-firefox.
  2. Click Load Temporary Add-on.
  3. Select the manifest.json file of this repository.

Firefox (permanently)

  1. Pack the compiled addon into a zip archive or download it from the releases.
  2. Go to about:addons.
  3. Click the ⚙️ button.
  4. Click Install Add-on From File.
  5. Select the downloaded ZIP.