sqlformat

Unchanged is the way!

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name     sqlformat
// @version  1
// @grant    none
// @include http://www.dpriver.com/pp/sqlformat.htm
// @description Unchanged is the way!
// @require     https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js
// @namespace https://greasyfork.org/users/181068
// ==/UserScript==
setTimeout(gogogo, 100);
function gogogo() {
  $("select[name='keywordcs']").val('Unchanged');
  $("select[name='tablenamecs']").val('Unchanged');
  $("select[name='columnnamecs']").val('Unchanged');
  $("select[name='functioncs']").val('Unchanged');
  $("select[name='datatypecs']").val('Unchanged');
  $("select[name='aliascs']").val('Unchanged');
  $("select[name='quotedidentifiercs']").val('Unchanged');
  $("select[name='identifiercs']").val('Unchanged');
}