Greasy Fork is available in English.

Laravel Docs Sidebar Expander

Expand all categories in the Laravel docs sidebar automatically

  1. // ==UserScript==
  2. // @name Laravel Docs Sidebar Expander
  3. // @namespace https://tendian.io/
  4. // @version 0.1
  5. // @description Expand all categories in the Laravel docs sidebar automatically
  6. // @author You
  7. // @match https://laravel.com/docs/*
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12.  
  13. $('.sidebar li h2').addClass('is-active');
  14. })();