es6.ruanyifeng

es6 文档 script

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         es6.ruanyifeng
// @namespace    ziggy chen
// @license MIT
// @version      1.2
// @description  es6 文档 script
// @author       Ziggy chen
// @match        *://es6.ruanyifeng.com/*
// @icon         https://es6.ruanyifeng.com/favicon.ico
// @run-at       document-start
// @grant        GM_addStyle
// ==/UserScript==

(function () {
  "use strict";
  // content 高度  800
  GM_addStyle(
    "@media (min-width: 40rem) { #content { width: 800px !important; }}"
  );
  GM_addStyle(
    "#back_to_top { right: 25px!important;margin-left: 0 !important;}"
  );
  GM_addStyle("#edit { right: 25px!important;margin-left: 0 !important;}");
  GM_addStyle("#theme { right: 25px!important;margin-left: 0 !important;}");
})();