Import source

This commit is contained in:
Steffen Lange 2019-07-15 22:27:48 +02:00
parent 50b489784d
commit 32b8c4cb56
34 changed files with 890 additions and 0 deletions

14
modules/GoogleChrome.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class GoogleChrome extends PatchBase {
function __construct() {
parent::__construct('Google', 'Chrome', 'https://www.google.de/chrome/');
}
function check() : bool {
if ($this->fetch('https://omahaproxy.appspot.com/all'))
return $this->parse('/win64,stable,([\d\.]+),/');
return false;
}
}
?>