By Gabriel Staples
TODO:
- Look into this one: https://gist.github.com/juanca/669c59f15a17e20022b8bd78b12889e6.
References:
- https://gist.github.com/peterflynn/ace5dd3d7a8ec645cd42
- https://gist.github.com/juanca/5fd799c5b094e3e4f8b709cd101d7403
Instructions:
Create these bookmarks in your browser with the following Name and URL fields. For the URL field, just copy and paste the code block exactly as written, line breaks and all, including the javascript:
line at the top! Line breaks, whitespace, and multi-line C-style comments (ex: /* comment */
) are all permitted (tested in Chrome at least) when copy-pasting into the URL field to create a bookmarklet. Once you've created a browser bookmark with this code in it, then put it in your bookmarks bar at the top of your browser, and click on them when needed to run the specified Javascript program to perform the prescribed function.
-
When viewing the "Files changed" tab during a GitHub PR review, some files with many changes may be collapsed. GitHub shows a "Load diff" link for these files, and says in small font underneath this link: "Large diffs are not rendered by default.". This makes it impossible to use Ctrl + F to search the page for certain code or text within those files, and it can be tedious to manually scroll down and click the "Load diff" link one-at-a-time for each of those files. So, click your "Load all diffs" bookmarklet below to quickly show (load) the diffs for all files.
Name: "Load all diffs"
URL:
javascript: /* Load all diffs by expanding all files in the "Files changed" tab during a GitHub PR review. Source: https://gist.github.com/juanca/5fd799c5b094e3e4f8b709cd101d7403 */ document.querySelectorAll('.load-diff-button').forEach(node => node.click())
-
Expand/open all outdated comments: when viewing the "Conversation" tab in a GitHub PR, frequently, many comments are hidden (collapsed) and marked as "Outdated". Click this "Show Outdated" bookmarklet to quickly expand and show every single one of those "Outdated" comments! This allows you to search the page for them, see them, and respond to them more easily.
Source: https://gist.github.com/peterflynn/ace5dd3d7a8ec645cd42#gistcomment-3432765
Name: "Show Outdated"
URL:
javascript: /* Quickly show (expand) all "Outdated" comments when looking at the "Conversation" tab during a GitHub PR review. */ function expandAllOutdatedComments() { document.querySelectorAll(".js-resolvable-timeline-thread-container").forEach( function(node) { node.open = true; } ) } /* Program entry point */ expandAllOutdatedComments();
-
Hide outdated comments. The opposite of the option just above.
Name: "Hide Outdated"
URL:
javascript: /* Quickly hide (collapse) all "Outdated" comments when looking at the "Conversation" tab during a GitHub PR review. */ function hideAllOutdatedComments() { document.querySelectorAll(".js-resolvable-timeline-thread-container").forEach( function(node) { node.open = false; } ) } /* Program entry point */ hideAllOutdatedComments();
References:
Right-click in browser --> Inspect --> in the Javascript "Console", type the following. This speeds up the playbax to 2.0x, for instance:
$('video').playbackRate = 2.0
Bookmarklets:
Name: 0.5x
URL:
javascript:
document.querySelector('video').playbackRate = 0.5;
Name: 1.0x
URL:
javascript:
document.querySelector('video').playbackRate = 1.0;
Name: 1.5x
URL:
javascript:
document.querySelector('video').playbackRate = 1.5;
Name: 2.0x
URL:
javascript:
document.querySelector('video').playbackRate = 2.0;
See also: https://gist.github.com/peterflynn/ace5dd3d7a8ec645cd42