Skip to content

Commit

Permalink
1.9.28
Browse files Browse the repository at this point in the history
  • Loading branch information
hoothin committed Aug 20, 2024
1 parent 6e71ced commit 38848ee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions searchJumper.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
// @name:ja SearchJumper
// @name:ru SearchJumper
// @namespace hoothin
// @version 1.9.27
// @version 1.9.28
// @description Boost your search efficiency, quickly toggle between search engines like Google, Bing, and Yahoo, while supporting simultaneous keyword highlighting across results.
// @description:zh-CN 老司机必备的终极搜索辅助脚本,数倍提升搜索效率,一键在 Google、Bing、百度等搜索引擎之间快速切换,支持关键词高亮、右键/拖拽/全站搜索、以图搜图、页内查找与自定义引擎等功能。
// @description:zh-CN 老司机必备搜索脚本,数倍提升搜索效率,一键在 Google、Bing、百度等搜索引擎之间快速切换,支持关键词高亮、右键/拖拽/全站搜索、以图搜图、页内查找与自定义引擎等功能。
// @description:zh-TW 萬能搜尋輔助,單鍵切換任何搜尋引擎,並有右鍵/拖曳/全站搜尋、以圖搜圖、頁內正規表達式查找、醒目標示與自訂搜尋引擎等功能。
// @description:ja 任意の検索エンジンにすばやく簡単にジャンプします、300種類以上の機能を備えています。
// @description:ru Легко проводите поиск по выбранному тексту/изображению/ссылке. Быстро переходите к любому поисковому движку. Выделяйте искомый текст.
Expand Down Expand Up @@ -1710,7 +1710,7 @@
}
#search-jumper.search-jumper-showall #search-jumper-alllist .sitelist {
visibility: visible!important;
opacity: 1;
opacity: 1!important;
pointer-events: all;
text-align: left;
position: static;
Expand Down Expand Up @@ -10959,12 +10959,12 @@
const headersReg = /#headers({.*?})/;
const streamReg = /#stream({(.*?)})?/;
const thenReg = /.then{(.*?)}/;
data = data.replace(/^showTips:/, '').trim();
data = data.replace(/^showTips:/, '').replace(/{name}/g, name).trim();
if (/^https?:/.test(data)) {
let url = data.split("\n");
if (url.length == 1) url = data.split(" ");
url = url[0];
data = data.replace(url, "").trim().replace(/\\{/g, "showTipsLeftBrace").replace(/\\}/g, "showTipsRightBrace").replace(/{name}/g, name).replace(/{url}/g, '【SEARCHJUMPERURL】');
data = data.replace(url, "").trim().replace(/\\{/g, "showTipsLeftBrace").replace(/\\}/g, "showTipsRightBrace").replace(/{url}/g, '【SEARCHJUMPERURL】');
let cache = url.match(cacheReg);
if (cache) {
cache = parseInt(cache[1]);
Expand Down
2 changes: 1 addition & 1 deletion src/Version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "1.9.27";
export const version = "1.9.28";

0 comments on commit 38848ee

Please sign in to comment.