| Age | Commit message (Collapse) | Author | 
|---|
|  | The YAML single quote escape wasn't replacing globally so only the first
quote in the page title would be escaped. This results in incorrect
formatting and YAML files that can't be imported without escaping
separately. | 
|  | As of Chrome 35, the downloaded file would appear with the filename
'download.txt' instead of the custom defined timestamped filename. Use a
JS blob instead of a data URL to download the file so that the filename
sticks. | 
|  | Move code that generates the filename (without the extension) to a
separate function so that we can get it in the header of the main page. | 
|  | If the download option is set, a backup file is now downloaded when the
extension button is clicked. | 
|  | Instead of updating the textarea directly, add the backup text to a
string and assign that string to the textarea later.
This allows us to add the text to a file for download on click of the
extension button and outside the context of the extension's main page. | 
|  | Move the download link to the top of the page and style it. | 
|  |  | 
|  | Add leading zero to minute. | 
|  | For the download link, append a file extension appropriate to the type
of file being downloaded. | 
|  | Since I'm now outputting YAML manually for better looks, get rid of the
YAML serialiser I included previously. | 
|  |  | 
|  | * Remove <a> tags
* Show page title and URL for each entry | 
|  |  | 
|  |  | 
|  | From 2014.03.17. Clicking on the extension's icon button opens a new
tab containing a textarea with all URLs in open tabs collected by
window. |