Prettify JSON Selection

Adds a shortcut(Shift + Ctrl/Alt/Option + F) and context menu option to prettify code selection.

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         Prettify JSON Selection
// @namespace    vengut.github.io
// @version      2024-10-10
// @description  Adds a shortcut(Shift + Ctrl/Alt/Option + F) and context menu option to prettify code selection.
// @license      MIT
// @author       Venkat G
// @match        *://*/*
// @icon         data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📄</text></svg>
// @grant        GM_registerMenuCommand
// ==/UserScript==

(function () {
  "use strict";

  GM_registerMenuCommand("Prettify", prettifyJson);

  document.querySelector("body").addEventListener("keydown", (event) => {
    console.log(event.key);
    // Shift + Ctrl/Alt/Option + F
    if (event.shiftKey && (event.altKey && event.ctrlKey) && (event.key === "Ï" || event.key === "F")) {
      prettifyJson();
    }
  });

  function prettifyJson() {
    try {
      let text = "";

      // https://stackoverflow.com/a/5379408
      if (window.getSelection) {
        text = window.getSelection().toString();
      } else if (document.selection && document.selection.type != "Control") {
        text = document.selection.createRange().text;
      }

      const json = JSON.stringify(JSON.parse(text), null, 2);
      const blob = new Blob([json], { type: "application/json" });
      const blobUrl = URL.createObjectURL(blob);
      window.open(blobUrl);
    } catch (err) {}
  }
})();