A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
matrix-puppeteer-line/puppet
DESKTOP-O1U24RQ\Kevin_Yu 175cf7487f minior fixed 12 months ago
..
src minior fixed 12 months ago
.dockerignore Run as non-root user and add optional no-sandbox flag 3 years ago
.eslintrc.json Add API for puppeteer script 3 years ago
.gitignore Update docs 2 years ago
Dockerfile Add required gtk+3.0 dependency for Docker 1 year ago
README.md Fix sandboxing 1 year ago
docker-run.sh Update Dockerfiles and dependencies 2 years ago
example-config-docker.json Fix sandboxing 1 year ago
example-config.json modified example config 12 months ago
package.json add timezone support 12 months ago
yarn.lock Merge branch 'systemd' into testing 2 years ago

README.md

Listen config

If type is unix, path is the path where to create the socket.

If type is tcp, port and host are the host/port where to listen.

Executable path

The executable_path specifies the path to the Chromium binary for Puppeteer to use. Leaving this setting blank will use the x86_64 Chromium installation bundled with Puppeteer. For other architectures, it is necessary to install a compatible version of Chromium (ideally via your distribution's package manager), and to set executable_path to the path of its binary (typically /usr/bin/chromium).

Sandbox

Whether or not to pass the --no-sandbox flag to Chromium. May be required when running Chromium in a container.

Profile directory

The profile_dir specifies which directory to put Chromium user data directories.

Extension directory

The extension_dir specifies which directory contains the files for the LINE extension, which you must download yourself.

Cycle delay

cycle_delay specifies the period (in milliseconds) at which Puppeteer should view chats to check on their read receipts. Only chats with messages that haven't been fully read need to be checked. Set to a negative value to disable this checking.

xdotool

Set use_xdotool to true to allow the Node process to manipulate the mouse cursor of the X server it runs in. Requires the xdotool utility to be installed. Highly recommended, especially when running in a background X server. Its default value is false so that running in a non-background X server won't interfere with a real mouse cursor.

jiggle_delay specifies the period (in milliseconds) for "jiggling" the mouse cursor (necessary to keep the LINE extension active). Only relevant when use_xdotool is true.

DevTools

Set devtools to true to launch Chromium with DevTools enabled by default.