Skip to content

Instantly share code, notes, and snippets.

@YusukeHosonuma
Created January 5, 2023 15:12
Show Gist options
  • Save YusukeHosonuma/fe47f8a0f5030f295154d244cf15bdeb to your computer and use it in GitHub Desktop.
Save YusukeHosonuma/fe47f8a0f5030f295154d244cf15bdeb to your computer and use it in GitHub Desktop.
🍎 Appleドキγƒ₯γƒ‘γƒ³γƒˆγ‹γ‚‰γ‚³γƒΌγƒ‰γ‚’γ‚³γƒ”γƒšγ—γŸζ™‚γ«δ½™θ¨ˆγͺ空葌がε…₯らγͺγ„γ‚ˆγ†γ«γ™γ‚‹
// ==UserScript==
// @name Golden Apple
// @namespace http://tampermonkey.net/
// @version 0.1
// @description When source code is copied and pasted from Apple documentation, unnecessary line breaks should no longer be inserted.
// @author @tobi462
// @match https://developer.apple.com/documentation/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant none
// ==/UserScript==
'use strict';
setTimeout(function() {
document.querySelectorAll('.notranslate').forEach(function(x) {
if (x.innerHTML === "\n" && x.classList.contains('code-line') === false) {
x.remove();
}
});
}, 2000);
@YusukeHosonuma
Copy link
Author

Tampermonkey にユーアスクγƒͺγƒ—γƒˆγ¨γ—γ¦η™»ιŒ²γ—γ¦γŠγγ¨ζ₯½γ§γ™γ€‚

image

image

γŸγΆγ‚“γ“γ‚ŒγŒδΈ€η•ͺζ₯½γ γ¨ζ€γ„ます

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment