View youtube-autoskip.user.js
This file contains 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 Skip YouTube Ads | |
// @version 1.0.2 | |
// @description Speed up and skip YouTube ads automatically | |
// @author codiac-killer | |
// @match *://*.youtube.com/* | |
// @exclude *://*.youtube.com/subscribe_embed?* | |
// ==/UserScript== | |
let main = new MutationObserver(() => { |
View .cvim
This file contains 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
set smoothscroll | |
" don't allow site to focus their input fields when they load | |
set noautofocus | |
" have console on bottom | |
let barposition = "bottom" | |
" Set avialable search engines | |
let searchengine brave = 'https://search.brave.com/search?q=%s' |
View scrolled_frames.py
This file contains 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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
#--------------------------------------------------------------------------- | |
#This gist is heavily based on a gist from novel-yet-trivial | |
#https://gist.github.com/novel-yet-trivial/3eddfce704db3082e38c84664fc1fdf8 | |
#--------------------------------------------------------------------------- | |
import tkinter as tk |