Google Slides URL Modifier

Modify the URL of Google Slides locally

2025-03-14 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name         Google Slides URL Modifier
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Modify the URL of Google Slides locally
// @author       ronyuygvhv
// @match        https://www.google.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Modify this to your desired fake URL
    const fakeURL = 'https://yourcustomurl.com';

    // Replace the browser's address bar URL locally
    window.history.replaceState({}, '', fakeURL);
})();