Skip to content

A WebDAV-like server to sync Tampermonkey scripts and edit them with an external editor

License

Notifications You must be signed in to change notification settings

reek/tamperdav

 
 

Repository files navigation

TamperDAV

A WebDAV-like server to sync Tampermonkey scripts and edit them with an external editor.

WARNING: this is not a 100% WebDAV-compliant server. Many clients should, but don't necessarily have to work!

Usage

Make sure Node.js greater than v4.9 is installed.

Windows

execute TamperDAV.bat

Linux

$ ./tamperdav.sh

Clients

Tampermonkey (4.7.5823+)

alt text

Notes:

  • in order to allow Tampermonkey to use the full TamperDAV feature set, please make sure TamperDAV is running when Tampermonkey is started.
  • you can easily find the right file to edit by running node find_script_in_meta.js --name="My Script Name"

mount

sudo mount -t davfs http://localhost:7000 /mnt

nautilus

dav://localhost:7000/

Development

# Install dependencies
$ npm install

# run
$ mkdir dav
$ node server.js --path=dav/

Config

All options can be set via config.json and/or command line. username and password can be set via environment as well.

Command Line Example

$ TD_USERNAME=derjanb TD_PASSWORD=secret node server.js --path=dav/ --port=6000

Config File Example

config.json:

{
    "path": "dav",
    "no-auth-warning": false,
    "username": "derjanb",
    "password": "secret",
    "port": "7000",
    "host": "localhost",
    "max-cursors": 512,
    "open-in-editor": "sublime_text",
    "meta-touch": true,
    "debug": true,
}

All Options

  • path a relative path from where the files should be served
  • no-auth-warning don't show a warning if no username and password is set
  • username username for authentication (basic auth)
  • password password
  • port TCP port to listen at
  • host network address to bind on
  • max-cursors number of cached changes
  • open-in-editor if "true" then if Windows "notepad" editor is used, else xgd-open; or the executable as string i.e. "gedit", "notepad", ...
  • meta-touch touch a sync entries's meta file automatically to make Tampermonkey start a sync on script changes
  • debug print debug information

About

A WebDAV-like server to sync Tampermonkey scripts and edit them with an external editor

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.0%
  • Other 2.0%