Skip to content

Instantly share code, notes, and snippets.

View Far-Se's full-sized avatar
🦝

Far Se Far-Se

🦝
  • Iasi
View GitHub Profile
/**
* @name Dark Matter
* @author Tropical#8908, Hammock#3110
* @version 3.0.0
* @description A cold, dark & frosty theme.
* @source https://github.com/DiscordStyles/DarkMatter/
*/
@import url('https://DiscordStyles.github.io/DarkMatter/src/base.css');
@Far-Se
Far-Se / discord.script.js
Created October 30, 2023 14:33
Tampermonkey script to block certain websites based on time
// ==UserScript==
// @name BlockWebsite
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://discord.com/*
// @icon https://icons.duckduckgo.com/ip2/iconfinder.com
// @grant none
// @run-at document-start
@Far-Se
Far-Se / discord.js
Last active August 1, 2023 14:40
Discord mimic user name and avatar.
// ==UserScript==
// @name Discord Mimic
// @namespace Discord
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://discord.com/*
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://discord.com
// @grant GM_xmlhttpRequest
// @grant GM.setValue
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>')
console.log('SEARCHING...')
console.log('-----------------------------------------------------------')
globalSearch(window, 'prØØf')
console.log('>>> D O N E >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>')
function globalSearch(startObject, value, returnFirstResult = false) {
var stack = [[startObject, '']]
// ==UserScript==
// @name Discord Copy SRC ALT+C
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://discord.com/*
// @icon https://icons.duckduckgo.com/ip2/discord.com.ico
// @grant none
// ==/UserScript==
@Far-Se
Far-Se / yt-remove-liked-videos-v2.js
Last active October 16, 2022 03:19
Youtube delete all liked videos. Hover your mouse on the 3 dots then hit F4. If video is deleted, go with the mouse to the next one. Install AutoHotKey first.
//Open DevTools and paste this in Console.
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
async function deleteLikedVideos() {
'use strict';
var items = document.querySelectorAll('ytd-menu-renderer > yt-icon-button.dropdown-trigger > button[aria-label]');
var out;
@Far-Se
Far-Se / discord-avatar.js
Created January 26, 2022 09:08
Discord Tampermonkey script to change avatar and status automatically, at each hour.
// ==UserScript==
// @name Discord Avatar
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://discord.com/channels/*
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://discord.com
// @grant GM_xmlhttpRequest
// @grant GM.setValue
@Far-Se
Far-Se / google-play.js
Last active August 18, 2022 06:04
Google Play See Maximum Installs and Release Date.
// ==UserScript==
// @name Google PlayStore Info
// @namespace http://tampermonkey.net/
// @version 9.1.2
// @description try to take over the world!
// @author You
// @match https://play.google.com/store/*
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://play.google.com
// @grant none
// ==/UserScript==
@Far-Se
Far-Se / flutter_sign.bat
Last active August 14, 2022 04:56
Flutter desktop sign executable
:: paste one by one, you will receive questions for each.
openssl genrsa -out appname.key 2048
openssl req -new -key appname.key -out appname.csr
openssl x509 -in appname.csr -out appname.crt -req -signkey appname.key -days 365
openssl pkcs12 -export -out CERTIFICATE.pfx -inkey appname.key -in appname.crt
signtool sign /f "path\to\CERTIFICATE.pfx" /p "password" /t http://timestamp.digicert.com /fd SHA256 "path\to\executable.exe"
@Far-Se
Far-Se / yt-sidebar.js
Last active July 20, 2022 05:24
Youtube new Sidebar, cleaner and playlists separated from Youtube generated lists.
// ==UserScript==
// @name Youtube New Sidebar
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Youtube new Sidebar, cleaner and playlists separated from Youtube generated lists.
// @author Your Grandma
// @match https://www.youtube.com/*
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://youtube.com
// @grant none
// ==/UserScript==