PatchBot/modules/Floccus.php
2020-01-28 15:36:51 +01:00

14 lines
361 B
PHP

<?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;
}
}
?>