Greasy Fork is available in English.
添加Chiphell论坛入口
// ==UserScript==
// @name Chiphell论坛入口
// @description 添加Chiphell论坛入口
// @namespace http://greasyfork.icu/zh-CN/scripts/441396
// @version 0.5
// @author lqzh
// @copyright lqzh
// @match http*://www.chiphell.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var n = document.querySelector("#nv li:last-child");
!n.textContent.includes('社区') && n.insertAdjacentHTML('afterend','<li><a href="https://www.chiphell.com/forum.php">社区</a></li>');
})();