Add floccus

This commit is contained in:
Steffen Lange 2020-01-28 15:36:51 +01:00
parent 7c85eb6464
commit 2b6c4f1b87

14
modules/Floccus.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class Floccus extends PatchBase {
function __construct() {
parent::__construct('Marcel Klehr', 'floccus', 'https://addons.mozilla.org/en-US/firefox/addon/floccus/');
}
function check() : bool {
if ($this->fetch('https://addons.mozilla.org/en-US/firefox/addon/floccus/'))
return $this->parse('/"version":"([\d\.]+)"/');
return false;
}
}
?>