Created
November 12, 2019 18:33
-
-
Save kanonji/858879617c9cc2997897d5054c19aede to your computer and use it in GitHub Desktop.
Kindle メモとハイライトを保存しやすいDOMに調整するbookmarklet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){$("#annotation-scroller").appendTo("body");$("#a-page").remove();$("#a-popover-root").remove();$(".a-popover-trigger").parent().parent().remove();$(".kp-notebook-row-separator").css("width","inherit");$(".kp-notebook-print-override").css("width","inherit")})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
$('#annotation-scroller').appendTo('body') | |
$('#a-page').remove() | |
$('#a-popover-root').remove() | |
$('.a-popover-trigger').parent().parent().remove() | |
$('.kp-notebook-row-separator').css('width', 'inherit') | |
$('.kp-notebook-print-override').css('width', 'inherit') | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment