echoly

(★ 46)

Live YouTube translation Chrome extension. Hear any video in your language. Two tiers (sub-second Realtime / cheaper Standard), 13 languages, runs on your own Kyma API key.

File Explorer

  • .gitignore
  • background.js
  • BUGS.md
  • content.css
  • content.js
  • LICENSE
  • manifest.json
  • pack.sh
  • popup.css
  • popup.html
  • popup.js
  • README.md
  • release.sh
  • SPEC-SUBSCRIPTION.md
  • TEST-MATRIX.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

git pull

View Details ▼

Fetch branch from a remote repository and merge it to local repository.

git pull

Download changes from default remote repository and merge it:

git pull {{[-r|--rebase]}}

Download changes from default remote repository and use fast-forward:

git pull {{remote_name}}

Download changes from a specific remote repository:

🔍

node

View Details ▼

Server-side JavaScript platform (Node.js).

node {{path/to/file}}

Run a JavaScript file:

node

Start a REPL (interactive shell):

node --watch {{path/to/file}}

Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):

// repository documentation