This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Replace Yudkowsky with Ludkowsky on Twitter | |
| // @namespace Violentmonkey Scripts | |
| // @match https://twitter.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Add Smiley Face | |
| // @namespace Violentmonkey Scripts | |
| // @match http*://*/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| // Create a div element for the smiley face | |
| const smileyDiv = document.createElement("div"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Smiley Face Button | |
| // @namespace Violentmonkey Scripts | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Smiley Face Button | |
| // @namespace Violentmonkey Scripts | |
| // @version 1 | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Auto Refresh | |
| // @namespace Violentmonkey Scripts | |
| // @version 1.0 | |
| // @description Automatically refreshes the page every 10 seconds. | |
| // @author Your Name | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Auto Refresh | |
| // @namespace Violentmonkey Scripts | |
| // @version 1.0 | |
| // @description Automatically refreshes the page every 10 seconds. | |
| // @author Your Name | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Auto Refresh | |
| // @namespace Violentmonkey Scripts | |
| // @version 1.0 | |
| // @description Automatically refreshes the page every 10 seconds. | |
| // @author Your Name | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Hello World Script | |
| // @namespace Violentmonkey Scripts | |
| // @version 1.0 | |
| // @description Greets the user with a popup message when they visit a website. | |
| // @author Your Name | |
| // @match *://*/* | |
| // @grant GM_notification | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Auto Refresh | |
| // @namespace Violentmonkey Scripts | |
| // @version 1.0 | |
| // @description Automatically refreshes the page every 10 seconds. | |
| // @author Your Name | |
| // @match *://*/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Big Smileys Everywhere | |
| // @description Adds a big smiley face to the upper right corner of every page | |
| // @version 1 | |
| // @match *://*/* | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; |