Greasy Fork is available in English.

Redirect stocks.zerodha.com to tickertape

Redirect stocks.zerodha.com to tickertape for more comprehensive analysis

// ==UserScript==
// @name         Redirect stocks.zerodha.com to tickertape
// @namespace    https://greasyfork.org/en/users/1019658-aayush-dutt
// @version      0.1
// @description  Redirect stocks.zerodha.com to tickertape for more comprehensive analysis
// @author       aayushdutt
// @match        https://stocks.zerodha.com/*
// @grant        none
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zerodha.com
// @license      MIT
// ==/UserScript==


(function() {
    'use strict';
    window.location = "https://tickertape.in" +  window.location.pathname
})();