File tree 3 files changed +39
-4
lines changed
3 files changed +39
-4
lines changed Original file line number Diff line number Diff line change 1
1
// ==UserScript==
2
- // @name alison.com auto starter
2
+ // @name The alison.com auto starter
3
3
// @namespace http://tampermonkey.net/
4
4
// @version 1.0
5
5
// @description Auto click "Start topic" on alison.com
6
- // @match https://alison.com/topic/learn/*
7
6
// @author lainiwa
7
+ // @match https://alison.com/topic/learn/*
8
+ // @icon https://www.google.com/s2/favicons?sz=64&domain=alison.com
8
9
// @grant none
9
10
// ==/UserScript==
10
11
Original file line number Diff line number Diff line change 1
1
// ==UserScript==
2
2
// @name Atomatic ChatGPT Retry
3
3
// @namespace http://tampermonkey.net/
4
- // @version 0.1
5
- // @description try to take over the world!
4
+ // @version 1.0
5
+ // @description Automatic retry for ChatGPT
6
6
// @author lainiwa
7
7
// @match https://chat.openai.com/chat
8
8
// @icon https://www.google.com/s2/favicons?sz=64&domain=openai.com
Original file line number Diff line number Diff line change
1
+ // ==UserScript==
2
+ // @name AutoClick Disclaimer Button
3
+ // @namespace http://tampermonkey.net/
4
+ // @version 1.0
5
+ // @description Auto click a disclaimer button
6
+ // @author lainiwa
7
+ // @match https://www.xvideos.com/*
8
+ // @icon https://www.google.com/s2/favicons?sz=64&domain=xvideos.com
9
+ // @grant none
10
+ // ==/UserScript==
11
+
12
+ ( function ( ) {
13
+ 'use strict' ;
14
+
15
+ // Function to click the button
16
+ var clickButton = function ( ) {
17
+ var button = document . querySelector ( '.disclaimer-enter-straightsShortSiteName' ) ;
18
+ if ( button ) {
19
+ button . click ( ) ;
20
+ // Disconnect the observer after clicking the button
21
+ observer . disconnect ( ) ;
22
+ }
23
+ } ;
24
+
25
+ // Create an observer instance
26
+ var observer = new MutationObserver ( clickButton ) ;
27
+
28
+ // Configuration of the observer
29
+ var config = { childList : true , subtree : true } ;
30
+
31
+ // Pass in the target node, as well as the observer options
32
+ observer . observe ( document . body , config ) ;
33
+
34
+ } ) ( ) ;
You can’t perform that action at this time.
0 commit comments