Created
January 5, 2023 15:12
-
-
Save YusukeHosonuma/fe47f8a0f5030f295154d244cf15bdeb to your computer and use it in GitHub Desktop.
π Appleγγγ₯γ‘γ³γγγγ³γΌγγγ³γγγγζγ«δ½θ¨γͺη©Ίθ‘γε
₯γγͺγγγγ«γγ
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
// ==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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tampermonkey γ«γ¦γΌγΆγΉγ―γͺγγγ¨γγ¦η»ι²γγ¦γγγ¨ζ₯½γ§γγ
γγΆγγγγδΈηͺζ₯½γ γ¨ζγγΎγ