an alternative to bookmarks

share websites to others with one right click

For this extension to work you need 3 things
Here is a simple example of ajax endpoint code that will append bookmarks and titles to the file hypertagger.html
 <?php
header('Access-Control-Allow-Origin: *');
function append($sz="", $name='hypertagger.html',$mode='a') {
    $fp=fopen($name,$mode);
    fwrite($fp,$sz."\r\n");
    fclose($fp);
}
$pageUrl = @$_POST['pageUrl'];
$prompt = @$_POST['prompt'];
$datetime = @$_POST['datetime'];
if($pageUrl && $prompt) {
    $newLine = "<a href='$pageUrl' title='$datetime' >$prompt</a><br>";
    append($newLine);
}
download
see html
reset html

other extentions

idgather
crapskip