We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b63805 commit 5039d44Copy full SHA for 5039d44
1 file changed
SearchJumper/searchJumper.user.js
@@ -4,7 +4,7 @@
4
// @name:zh-TW 搜索醬
5
// @name:ja 検索ちゃん
6
// @namespace hoothin
7
-// @version 1.6.5.6.6
+// @version 1.6.5.6.7
8
// @description Jump to any search engine quickly and easily, the most powerful, most complete search enhancement script!
9
// @description:zh-CN 又一个多搜索引擎切换脚本,在搜索时一键跳转各大搜索引擎,支持任意页面右键划词搜索与全面自定义
10
// @description:zh-TW 又一個多搜尋引擎切換脚本,在搜索時一鍵跳轉各大搜尋引擎,支持任意頁面右鍵劃詞搜索與全面自定義
@@ -1875,7 +1875,7 @@
1875
ele.dataset.name = name;
1876
ele.classList.add("search-jumper-word");
1877
let word = document.createElement("span");
1878
- word.innerText = name;
+ word.innerText = name.substr(0, 3).trim();
1879
ele.appendChild(word);
1880
let img = document.createElement("img");
1881
img.style.opacity = 0;
0 commit comments