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
// Public domain, or MIT if not legal. | |
// Run using the console on contacts.google.com | |
// Approve notifications | |
/** @type {(xPath: string) => HTMLElement[]} */ | |
var $x = $x; | |
/** @type {(cssSelector: string) => HTMLElement} */ | |
var $ = $; |
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
// To compile, add AppKit.Framework to the required frameworks for the project | |
// Includes and modifies code from - | |
// https://github.com/eonil/CocoaProgrammaticHowtoCollection/tree/master/ComponentUsagesInObjectiveC/FileDropIntoTableView | |
// Created by Hoon H. on 2014/06/13. | |
// Copyright (c) 2014 Eonil. All rights reserved. | |
// https://source.chromium.org/chromium/chromium/src/+/main:chrome/browser/ui/cocoa/task_manager_mac.h | |
// https://source.chromium.org/chromium/chromium/src/+/main:chrome/browser/ui/cocoa/task_manager_mac.mm | |
// Copyright 2012 The Chromium Authors |
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
// License - no author warranty/responsibility/guarantee public domain where allowed. Otherwise - | |
// License - no author warranty/responsibility/guarantee, can do whatever you want with the code where allowed. Otherwise - | |
// License - MIT. | |
(function () | |
{ | |
// Let the fun begin. | |
"use strict"; | |
const | |
/** @const {Object<string, string>} */ |
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
javascript:(function() { | |
var node, array = [], iterator = document.evaluate("//li[contains(@class, 'js-stream-item') and .//span[contains(@class, 'Icon--magicrecs')]]", document); | |
while (node = iterator.iterateNext()) { | |
array.push(node) | |
} | |
for (x of array) { | |
x.style.cssText += "visibility: hidden !important"; | |
} | |
}()); |
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
Hello! |
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
{ | |
"log": { | |
"version": "1.2", | |
"creator": { | |
"name": "WebInspector", | |
"version": "537.8" | |
}, | |
"pages": [ | |
{ | |
"startedDateTime": "2012-08-30T19:19:54.213Z", |