AddOn:
- Go to
about:support
in your address bar - Look for your profiles directory and open it:
- Create a file named
chrome/userChrome.css
in your profile directory and populate the following css code
AddOn:
about:support
in your address barchrome/userChrome.css
in your profile directory and populate the following css code#!/usr/bin/env bash | |
# Script that erases pipelines from GitLab | |
GITLAB_TOKEN="" # <required> | |
PROJECT_ID="" # <required> | |
GITLAB_INSTANCE="https://gitlab.com/api/v4/projects" # <required> | |
PER_PAGE="" # [optional] if not specified script will run once per page | |
for PIPELINE in $(curl --header "PRIVATE-TOKEN: $GITLAB_TOKEN" "$GITLAB_INSTANCE/$PROJECT_ID/pipelines?per_page=$PER_PAGE&sort=asc" | jq .[].id) ; do |
# How to fully uninstall Logitech G HUB on macOS via terminal/command line | |
# Tested on macOS version 12.3.1 (21E258) Monterey in April 2022 | |
# with Logitech G HUB version 2022.3.242300 (released on 2022-03-22) installed. | |
# 1. Make sure "Logitech G HUB" itself is not running. If it is, quit it. | |
# 2. Open "Activity Monitor" and force-quit all processes named "lghub*". | |
# 3. Delete system-wide files | |
sudo rm -rf /Applications/lghub.app |
(async () => { | |
const buttons = document.querySelectorAll( | |
'button.style-scope.yt-icon-button[aria-label="Action menu"]' | |
); | |
for (const button of buttons) { | |
try { | |
button.click(); | |
await new Promise(r => setTimeout(r, 200)); | |
const item = [...document.querySelectorAll("ytd-menu-service-item-renderer")].find(el => el.textContent.includes("Remove from Watch Later")); |