https://www.google.com/chrome/
https://chrome.google.com/webstore/detail/web-scraper/jnhgnonknehpejjnehehllkliplmbmhn
More tutorials: https://www.webscraper.io/
| // ==UserScript== | |
| // @name ghloc | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.0.8 | |
| // @description Add ghloc link to GitHub repos. | |
| // @author pajecawav | |
| // @source https://gist.github.com/pajecawav/70ffe72bf4aa0968aa9f97318976138f | |
| // @updateURL https://gist.githubusercontent.com/pajecawav/70ffe72bf4aa0968aa9f97318976138f/raw | |
| // @downloadURL https://gist.githubusercontent.com/pajecawav/70ffe72bf4aa0968aa9f97318976138f/raw |
| public static class BigIntegerHelper | |
| { | |
| private static readonly BigInteger Ten = new BigInteger(10); | |
| public static BigInteger ToBigInteger(this ulong ul) | |
| { | |
| return new BigInteger(ul); | |
| } | |
| public static BigInteger ToBigInteger(this long ul) | |
| { | |
| return new BigInteger((ulong) ul); |