0. about
在google search的工具栏中插入中英文切换按钮
1. script
油猴脚本
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
(function() { 'use strict'; let url = location.href; let cn = "&lr=lang_zh-CN" if(!RegExp(cn).test(url)) { let toolBar = document.getElementsByClassName("LHJvCe")[0] let child = document.createElement("a"); child.className = "result-stats"; child.innerHTML = "中文"; let new_url = url+cn child.href = new_url; toolBar.appendChild(child); } else { let toolBar = document.getElementsByClassName("LHJvCe")[0] let child = document.createElement("a"); child.className = "result-stats"; child.innerHTML = "英文"; let new_url = url.replace(cn, ""); child.href = new_url; toolBar.appendChild(child); }
})();
|
2. result
英文结果:
中文结果:
若未出现切换按钮,请尝试点击工具按钮