Geni Auto Expand Bio

Expand Bio sections automatically.

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

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

(function () {
  "use strict";

  var readMoreElem = document.querySelector('a.toggle_link[id^="bio_"]');

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