Greasy Fork is available in English.

Tradingview: remove blue border for the charts

Remove blue border for the charts in Tradingview

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name          Tradingview: remove blue border for the charts
// @description   Remove blue border for the charts in Tradingview
// @author        Konf
// @namespace     https://greasyfork.org/users/424058
// @icon          https://www.google.com/s2/favicons?domain=tradingview.com&sz=64
// @version       1.0.0
// @match         https://www.tradingview.com/
// @match         https://www.tradingview.com/*
// @run-at        document-body
// @grant         GM_addStyle
// ==/UserScript==

/* jshint esversion: 8 */

(function() {
  'use strict';

  GM_addStyle([`
    div.chart-container:after {
      border: none !important;
    }
  `][0]);
})();