Skip to content
This repository has been archived by the owner on Oct 23, 2022. It is now read-only.

l0b0/Bugzilla-changes-since-yesterday-bookmarklet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Bugzilla changes since yesterday bookmarklet

javascript:(function () {
    let date = new Date();
    date.setDate(date.getDate() - 1);
    let isoDate = date.getFullYear() + '-' + ('0' + (date.getMonth()+1)).slice(-2) + '-' + ('0' + date.getDate()).slice(-2);
    location.href = 'https://bugzilla.mozilla.org/buglist.cgi?chfieldfrom=' + isoDate;
})();

Use

  1. Create a new bookmark.
  2. Paste the full code above (from javascript: through the final ;) into the "Location" field.
  3. Save the bookmark.

License

AGPLv3+

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published