Skip to content

Instantly share code, notes, and snippets.

View bigansh's full-sized avatar
🎯
Focusing

Ansh Agarwal bigansh

🎯
Focusing
View GitHub Profile
"use strict";
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
// default font size in pixels for all tabs
@bigansh
bigansh / removeWishlist.js
Last active May 28, 2024 07:10
Remove Flipkart's wishlist all at once.
// So, I saw a Gist on GitHub for removing wishlist for Amazon using browser's console but couldn't find it for Flipkart, so I thought I would do it for myself, and it worked, so I am sharing the same with you. Hope it helps.
// Copy the code as is and paste it in console using CTRL + SHIFT + J.
// Note: It will only remove what is visible, so you may have to use it multiple times.
function deleteSavedItems() {
let query = document.getElementsByClassName("_2Nq6Qc")
timeout(query)