Oracle Java Documentation Syntax Highlighter

4/25/2022, 11:46:18 PM

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name        Oracle Java Documentation Syntax Highlighter
// @namespace   Violentmonkey Scripts
// @match       *://docs.oracle.com/javase/tutorial/*
// @grant       GM_addStyle
// @grant       GM_getResourceText
// @require     https://cdnjs.cloudflare.com/ajax/libs/prism/1.28.0/prism.min.js
// @require     https://cdnjs.cloudflare.com/ajax/libs/prism/1.28.0/components/prism-java.min.js
// @resource    prismCSS https://cdn.jsdelivr.net/npm/[email protected]/themes/prism.min.css
// @version     1.0
// @author      tcharts-boop
// @license     MIT
// @description 4/25/2022, 11:46:18 PM
// ==/UserScript==

/* Source Code */

const css = GM_getResourceText("prismCSS");
GM_addStyle(css);

let codeBlockClassElements = document.querySelectorAll('.codeblock');

codeBlockClassElements.forEach(e => {

    if (e.tagName !== 'PRE') {
        e = e.querySelector('pre');
    }

    codeText = e.textContent;
    e.textContent = '';

    codeElement = document.createElement('code');
    codeElement.textContent = codeText;
    codeElement.classList.add('language-java');

    e.appendChild(codeElement);
});