15 lines
507 B
PHP
15 lines
507 B
PHP
<?php
|
|
|
|
class FloccusChrome extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('Marcel Klehr', 'floccus', 'https://chrome.google.com/webstore/detail/floccus-bookmarks-sync/fnaicdffflnofjppbagibeoednhnbjhg');
|
|
$this->patch->setBranch('for Chrome');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch('https://chrome.google.com/webstore/detail/floccus-bookmarks-sync/fnaicdffflnofjppbagibeoednhnbjhg'))
|
|
return $this->parse('/<div class="nBZElf">([\d\.]+)<\/div>/');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|