updated userscripts with new update url

Cette révision appartient à :
Albirew 2024-06-12 20:28:44 +02:00
Parent b640481ab1
révision dc6392683a
Signé par: Albirew
ID de la clé GPG: 9D72DAEB1BB933C9
6 fichiers modifiés avec 2614 ajouts et 8 suppressions

Voir le fichier

@ -4,12 +4,12 @@
// @namespace https://gist.github.com/Albirew/
// @description The smallest, possibly most useful YouTube-Invidious conversion script. RegEx based. Sends any /www.youtube.com/ sites to Invidious before page load. Does not affect /other.youtube.com/, (gaming.youtube.com, creatoracademy.youtube.com, etc.).
// @include *youtube*
// @version 1.1c
// @version 1.1d
// @icon https://invidious.fdn.fr/favicon.ico
// @grant none
// @run-at document-start
// @downloadURL https://gist.githubusercontent.com/Albirew/4bb3bee6a8037b44cf67521284e94b93/raw/InviReg.user.js
// @updateURL https://gist.githubusercontent.com/Albirew/4bb3bee6a8037b44cf67521284e94b93/raw/InviReg.user.js
// @run-at document-start
// @downloadURL https://git.dess.ga/Albirew/GISTS/raw/branch/main/web/userscripts/InviReg.user.js
// @updateURL https://git.dess.ga/Albirew/GISTS/raw/branch/main/web/userscripts/InviReg.user.js
// ==/UserScript==
var url = window.location.toString();

Le diff du fichier est caché, car celui-ci est trop grand Voir la diff

Le diff du fichier est caché, car celui-ci est trop grand Voir la diff

Voir le fichier

@ -1,15 +1,15 @@
// ==UserScript==
// @name anti-disabled
// @description Remove fuckin password and button limitation on websites
// @version 1.2
// @version 1.2a
// @author sysadmin_fr | https://discord.gg/ejJ4dsg
// @namespace https://gist.github.com/Albirew/
// @grant none
// @include http://*
// @include https://*
// @run-at document-start
// @downloadURL https://gist.githubusercontent.com/Albirew/70167de32ecf5992c97c80b00584d4ee/raw/
// @updateURL https://gist.githubusercontent.com/Albirew/70167de32ecf5992c97c80b00584d4ee/raw/
// @downloadURL https://git.dess.ga/Albirew/GISTS/raw/branch/main/web/userscripts/anti-disabled.user.js
// @updateURL https://git.dess.ga/Albirew/GISTS/raw/branch/main/web/userscripts/anti-disabled.user.js
// ==/UserScript==
document.querySelectorAll('button[contains(., 'disabled')]').map(el => el != null && el.disabled = false)

Voir le fichier

@ -0,0 +1,20 @@
// ==UserScript==
// @name Stop Middle Click Hijacking
// @description Prevent sites from hijacking the middle mouse button for their own purposes
// @icon http://www.rjlsoftware.com/software/entertainment/finger/icons/finger.gif
// @version 0.2a
// @license GNU General Public License v3
// @copyright 2014, Nickel
// @grant none
// @include *
// @namespace https://greasyfork.org/users/10797
// @downloadURL https://git.dess.ga/Albirew/GISTS/raw/branch/main/web/userscripts/stp-middle-click-hyjacking.user.js
// @updateURL https://git.dess.ga/Albirew/GISTS/raw/branch/main/web/userscripts/stp-middle-click-hyjacking.user.js
// ==/UserScript==
(function(){
//Adapted from Chrome extension (written by petergrabs@yahoo.com)
//TODO: would event.preventDefault() also work??
document.addEventListener("click", function(e){ e.button===1 && e.stopPropagation(); }, true);
})();

Voir le fichier

@ -1,7 +1,7 @@
// ==UserScript==
// @name Unlazy-Load Images
// @namespace https://greasyfork.org/en/users/85671-jcunews
// @version 0.2b
// @version 0.2c
// @license AGPL v3
// @author jcunews
// @description remove shitty lazyload
@ -10,6 +10,8 @@
// @include http*://*www.webtoons.com/*
// @include *
// @grant none
// @downloadURL https://git.dess.ga/Albirew/GISTS/raw/branch/main/web/userscripts/unlazyload.user.js
// @updateURL https://git.dess.ga/Albirew/GISTS/raw/branch/main/web/userscripts/unlazyload.user.js
// ==/UserScript==
(() => {