Greasy Fork is available in English.

Clean Street View (Google Maps)

Removes the UI for Google Street View.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Clean Street View (Google Maps)
// @namespace    alienperfect
// @version      1.0.0
// @description  Removes the UI for Google Street View.
// @author       Alien Perfect
// @match        https://www.google.com/maps/*
// @icon         https://www.google.com/s2/favicons?sz=32&domain=google.com/maps
// @grant        GM_addStyle
// ==/UserScript==

"use strict";

GM_addStyle(`
  #titlecard {display: none !important}
  #minimap {display: none !important}
  #compass {display: none !important}
  #omnibox-singlebox {display: none !important}
  #image-header {display: none !important}
  #zoom {display: none !important}
  #watermark {display: none !important}
  .app-horizontal-widget-holder {display: none !important}
  .scene-footer-container {display: none !important}
`);