Skip to content

Instantly share code, notes, and snippets.

View martinlindenberg's full-sized avatar
🐢

Martin Lindenberg martinlindenberg

🐢
  • Home24 SE
  • Berlin
View GitHub Profile
@martinlindenberg
martinlindenberg / reformat.js
Last active November 3, 2023 14:06
Reformat AWS SSO page (without jquery)
// ==UserScript==
// @name format-aws-sso
// @namespace signin.aws.amazon.com
// @description reformats that page
// @include https://signin.aws.amazon.com/saml
// @version 3.0
// @grant none
// ==/UserScript==
reformat();
hover();
@martinlindenberg
martinlindenberg / github_pr_filetoggle.js
Last active October 13, 2023 14:24
introduces buttons for toggling and search to github pr page
// ==UserScript==
// @name github pr helper - home24.de
// @namespace Violentmonkey Scripts
// @description adds button to github pr file view to speed up reviews
// @include https://github.com/*/*/pull/*
// @version 1.3
// @author martinlindenberg
// @updateURL https://gist.githubusercontent.com/martinlindenberg/aeaed5909a771a45b06a071b2bc4787c/raw/github_pr_filetoggle.js
// @downloadURL https://gist.githubusercontent.com/martinlindenberg/aeaed5909a771a45b06a071b2bc4787c/raw/github_pr_filetoggle.js
// @grant none
@martinlindenberg
martinlindenberg / kibana_autocomplete_killer.js
Created September 12, 2017 11:50
kill autocomplete in kibana
// ==UserScript==
// @name Kibana autocomplete killer
// @namespace kibana
// @grant none
// @include https://logs.shop.legacy.home24.net/_plugin/kibana/*
// @include https://search-core-search-eesglts4q27vatpw62l25etg7i.eu-west-1.es.amazonaws.com/_plugin/kibana/*
// ==/UserScript==
function main() {
document.addEventListener('click', function() {
@martinlindenberg
martinlindenberg / format-aws-sso.js
Last active June 6, 2023 13:04
reformats AWS sso page. (greasemonkey script)
// ==UserScript==
// @name format-aws-sso
// @namespace signin.aws.amazon.com
// @description reformats that page
// @include https://signin.aws.amazon.com/saml
// @version 1.1
// @grant none
// ==/UserScript==
$('#saml_form').css('max-width', 'none');
$('fieldset').css('width', 'none');