How to make userscript auto update from private domain/github?

Viewed 137

I am developing a userscript for Tampermonkey and storing it on private Github, that belongs to my company. I can't upload the code on a public server. The auto update feature of the script doesn't seem to work.

  1. Is Tampermonkey using its own servers to check for updates?

  2. Is it possible to make userscript auto update itself from private domain?

I am using these properties in userscript:

// @downloadURL  https://github02.private.domain/raw/github-username/repo-name/master/userscript.js
// @updateURL    https://github02.private.domain/raw/github-username/repo-name/master/userscript.js
1 Answers

You can submit your userscript on Github Page. After you can use your public github page link for make update.

Related