Auto Expand

Expand Bio sections automatically.

当前为 2023-08-02 提交的版本,查看 最新版本

// ==UserScript==
// @name         Auto Expand
// @namespace    [email protected]
// @version      1.0
// @description  Expand Bio sections automatically.
// @author       Tommi Rautava
// @license      CC0 1.0 Universal
// @match        https://www.geni.com/people/*
// @grant        none
// ==/UserScript==

(function () {
  "use strict";

  var readMoreElem = document.getElementById("bio_en-US_toggle");

  if (readMoreElem) {
    readMoreElem.click();
  }
})();