Add Enterprise Policy Generator for Firefox

This commit is contained in:
Steffen Lange 2026-02-04 13:28:40 +01:00
parent c3ed4e8fcf
commit 512c7b8be2

View file

@ -0,0 +1,15 @@
<?php
class EnterprisePolicyGeneratorFF extends PatchBase {
function __construct() {
parent::__construct('Sören Hentzschel', 'Enterprise Policy Generator', 'https://addons.mozilla.org/en-US/firefox/addon/enterprise-policy-generator/');
$this->patch->setBranch('for Firefox');
}
function check() : bool {
if ($this->fetch('https://addons.mozilla.org/en-US/firefox/addon/enterprise-policy-generator/'))
return $this->parse('/"version":"([\d\.]+)"/');
return false;
}
}
?>