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 Remove Sponsor Ads | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-12-05 | |
// @description Removes sponsor ads on the MoneyControl mutual funds page. | |
// @author You | |
// @match https://www.moneycontrol.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=moneycontrol.com | |
// @grant none | |
// ==/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
{ | |
"budget_trips": [ | |
{ | |
"Alleppey": "The Venice Of The East", | |
"Goa": "The Land Of Beaches", | |
"Pondicherry": "The French Town", | |
"Gokarna": "The Less Crowded Goa", | |
"Rishikesh": "The Yoga Capital", | |
"Darjeeling": "The Land Of Thunderbolt", | |
"McLeodganj": "The Little Lhasa", |
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
/** | |
* Asynchronous function to fetch internet facts from a JSON API. | |
* @returns {Promise<void>} A Promise that resolves when the facts are fetched and logged. | |
*/ | |
async function getFacts() { | |
try { | |
// Fetch data from the internet_facts.json API | |
const API = await fetch( | |
"https://gist.githubusercontent.com/g-rohit/a4c4c49b85c71bff69738e9ad0e44da9/raw/1e74b775a2efcf1cca8b066da45aa0d28c2ac096/internet_facts.json" | |
); |
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
{ | |
"internet_facts": [ | |
"The first ever website was published on August 6, 1991, by Tim Berners-Lee.", | |
"The first email was sent by Ray Tomlinson in 1971.", | |
"The concept of the World Wide Web was proposed by Tim Berners-Lee in 1989.", | |
"Google processes over 40,000 search queries every second on average.", | |
"The internet requires 50 million horsepower to keep running in current state.", | |
"The most common use of the internet is sending and receiving email.", | |
"YouTube is the second largest search engine on the internet, after Google.", | |
"There are over 1.7 billion websites on the internet as of 2021.", |
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
[ | |
{ | |
"Name": "Antivirus", | |
"ApplicationName": "Bitdefender Antivirus Free", | |
"URL": "https://www.bitdefender.com/solutions/free.html", | |
"tags": "utilities" | |
}, | |
{ | |
"Name": "Break time reminder", | |
"ApplicationName": "Stretchly", |
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
{ | |
"quotes": [ | |
{ | |
"quote":"Life isn’t about getting and having, it’s about giving and being.","author":"Kevin Kruse"}, | |
{ | |
"quote":"Whatever the mind of man can conceive and believe, it can achieve.","author":"Napoleon Hill"}, | |
{ | |
"quote":"Strive not to be a success, but rather to be of value.","author":"Albert Einstein"}, | |
{ |
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
// https://www.magzter.com/magazines/listAllIssues/503 | |
// var all = document.querySelectorAll('.jsx-3193871204.mag__resultsListInner') | |
// all.forEach(eachitem => { console.log(eachitem.innerText) }) | |
{ | |
"December 09, 2020", | |
"November 25, 2020", | |
"November 11, 2020", | |
"October 28, 2020", | |
"October 14, 2020", | |
"September 30, 2020", |
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
var sheetName = 'responses' | |
var scriptProp = PropertiesService.getScriptProperties() | |
function intialSetup () { | |
var activeSpreadsheet = SpreadsheetApp.getActiveSpreadsheet() | |
scriptProp.setProperty('key', activeSpreadsheet.getId()) | |
} | |
function doPost (e) { |
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 HT-times-@grohit; | |
// @version 1.00 | |
// @Date 9th-dec-2020 | |
// @author github.com/g-rohit | |
// ==/UserScript== | |
// Desc: Remove ad blocker pop up | |
setInterval(function () { | |
if (window.location.href.includes("hindustantimes")) { |
NewerOlder