PatchBot/modules/DecentraleyesChrome.php

15 lines
504 B
PHP

<?php
class DecentraleyesChrome extends PatchBase {
function __construct() {
parent::__construct('Thomas Rientjes', 'Decentraleyes', 'https://chrome.google.com/webstore/detail/decentraleyes/ldpochfccmkkmhdbclfhpagapcfdljkj');
$this->patch->setBranch('for Chrome');
}
function check() : bool {
if ($this->fetch('https://chrome.google.com/webstore/detail/decentraleyes/ldpochfccmkkmhdbclfhpagapcfdljkj'))
return $this->parse('/<div class="N3EXSc">([\d\.]+)<\/div>/');
return false;
}
}
?>