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 Youtube remove "More Videos" | |
// @description Remove annoying panel covering up the video when paused | |
// @author Xorboo | |
// @namespace https://www.youtube.com | |
// @version 1.1 | |
// @match *://www.youtube.com/* | |
// @match *://youtube.com/* | |
// ==/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 Youtube embed button | |
// @description Fuck ads | |
// @author Xorboo | |
// @namespace https://www.youtube.com | |
// @version 1.1 | |
// @match *://www.youtube.com/* | |
// @match *://youtube.com/* | |
// ==/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
# -*- coding: utf-8 -*- | |
import os | |
import time | |
import requests | |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.common.by import By |
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
const SheetNames = { colorsData: 'Colors', availableColors: 'Available' }; | |
const NewColorCell = 'C2'; | |
const PaintTypes = { 'Base': 'B', 'Contrast': 'E', 'Layer': 'H', 'Shade': 'K', 'Dry': 'N', 'Texture': 'Q', 'Technical': 'T', 'Unknown': 'W' }; | |
const FallbackType = 'Unknown'; | |
const CleanColumns = { min: 'B', max: 'X' }; | |
const ListRows = { start: 5, end: 101 }; | |
const EmptyColor = '#FFFFFF'; | |
const FallbackColor = '#FFFFFF'; |