15 lines
510 B
PHP
15 lines
510 B
PHP
<?php
|
|
|
|
class CookieAutoDeleteChrome extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('CAD Team', 'Cookie AutoDelete', 'https://chrome.google.com/webstore/detail/cookie-autodelete/fhcgjolkccmbidfldomjliifgaodjagh');
|
|
$this->patch->setBranch('for Chrome');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch('https://chrome.google.com/webstore/detail/cookie-autodelete/fhcgjolkccmbidfldomjliifgaodjagh'))
|
|
return $this->parse('/\\\"version\\\": \\\"([\d\.]+)\\\"/');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|