|
2 | 2 | "name": "所有分组", |
3 | 3 | "description": "包含所有已知的分组配置", |
4 | 4 | "groups": [ |
| 5 | + { |
| 6 | + "id": "default_group", |
| 7 | + "name": "常用", |
| 8 | + "icon": "lucide:folder", |
| 9 | + "match": [ |
| 10 | + "*" |
| 11 | + ], |
| 12 | + "defaultOpen": "same-tab", |
| 13 | + "items": [ |
| 14 | + { |
| 15 | + "id": "default_home", |
| 16 | + "name": "首页", |
| 17 | + "icon": "lucide:home", |
| 18 | + "type": "url", |
| 19 | + "data": "/", |
| 20 | + "openIn": "same-tab" |
| 21 | + }, |
| 22 | + { |
| 23 | + "id": "default_google", |
| 24 | + "name": "Google 搜索", |
| 25 | + "icon": "favicon", |
| 26 | + "type": "url", |
| 27 | + "data": "https://www.google.com/search?q={selected||current_title||t:utags}", |
| 28 | + "openIn": "new-tab" |
| 29 | + }, |
| 30 | + { |
| 31 | + "id": "default_gemini", |
| 32 | + "name": "Gemini", |
| 33 | + "icon": "favicon", |
| 34 | + "type": "url", |
| 35 | + "data": "https://gemini.google.com/app", |
| 36 | + "openIn": "new-tab" |
| 37 | + }, |
| 38 | + { |
| 39 | + "id": "default_site_search", |
| 40 | + "name": "站内搜索", |
| 41 | + "icon": "favicon", |
| 42 | + "type": "url", |
| 43 | + "data": "https://www.google.com/search?q=site:{hostname_without_www}%20{selected||current_title}", |
| 44 | + "openIn": "new-tab" |
| 45 | + }, |
| 46 | + { |
| 47 | + "id": "default_greasyfork_search", |
| 48 | + "name": "搜索本站的油猴脚本", |
| 49 | + "icon": "favicon", |
| 50 | + "type": "url", |
| 51 | + "data": "https://greasyfork.org/scripts/by-site/{hostname_top_level}?filter_locale=0", |
| 52 | + "openIn": "new-tab" |
| 53 | + } |
| 54 | + ], |
| 55 | + "collapsed": false, |
| 56 | + "itemsPerRow": 1, |
| 57 | + "hidden": false |
| 58 | + }, |
| 59 | + { |
| 60 | + "id": "read_later_group", |
| 61 | + "name": "稍后阅读", |
| 62 | + "icon": "lucide:clock", |
| 63 | + "match": [ |
| 64 | + "*" |
| 65 | + ], |
| 66 | + "defaultOpen": "new-tab", |
| 67 | + "items": [] |
| 68 | + }, |
| 69 | + { |
| 70 | + "id": "search_group", |
| 71 | + "name": "搜索", |
| 72 | + "icon": "lucide:search", |
| 73 | + "match": [ |
| 74 | + "!https://www.google.com/search*", |
| 75 | + "!https://*.bing.com/search*", |
| 76 | + "!https://www.baidu.com/s?*", |
| 77 | + "!https://www.duckduckgo.com/*", |
| 78 | + "!https://duckduckgo.com/*", |
| 79 | + "*" |
| 80 | + ], |
| 81 | + "defaultOpen": "new-tab", |
| 82 | + "collapsed": false, |
| 83 | + "itemsPerRow": 1, |
| 84 | + "items": [ |
| 85 | + { |
| 86 | + "id": "google_search", |
| 87 | + "name": "Google 搜索", |
| 88 | + "icon": "favicon", |
| 89 | + "type": "url", |
| 90 | + "data": "https://www.google.com/search?q={selected||current_title||t:utags}" |
| 91 | + }, |
| 92 | + { |
| 93 | + "id": "google_site_search", |
| 94 | + "name": "Google 站内搜索", |
| 95 | + "icon": "favicon", |
| 96 | + "type": "url", |
| 97 | + "data": "https://www.google.com/search?q=site:{hostname_without_www}%20{selected||current_title}" |
| 98 | + }, |
| 99 | + { |
| 100 | + "id": "bing_search", |
| 101 | + "name": "Bing 搜索", |
| 102 | + "icon": "favicon", |
| 103 | + "type": "url", |
| 104 | + "data": "https://www.bing.com/search?q={selected||current_title||t:utags}" |
| 105 | + }, |
| 106 | + { |
| 107 | + "id": "baidu_search", |
| 108 | + "name": "Baidu 搜索", |
| 109 | + "icon": "favicon", |
| 110 | + "type": "url", |
| 111 | + "data": "https://www.baidu.com/s?wd={selected||current_title||t:utags}" |
| 112 | + }, |
| 113 | + { |
| 114 | + "id": "baidu_site_search", |
| 115 | + "name": "Baidu 站内搜索", |
| 116 | + "icon": "favicon", |
| 117 | + "type": "url", |
| 118 | + "data": "https://www.baidu.com/s?wd=site:{hostname_without_www}%20{selected||current_title}" |
| 119 | + }, |
| 120 | + { |
| 121 | + "id": "duckduckgo_search", |
| 122 | + "name": "DuckDuckGo 搜索", |
| 123 | + "icon": "favicon", |
| 124 | + "type": "url", |
| 125 | + "data": "https://duckduckgo.com/?q={selected||current_title||t:utags}&ia=web" |
| 126 | + }, |
| 127 | + { |
| 128 | + "id": "duckduckgo_site_search", |
| 129 | + "name": "DuckDuckGo 站内搜索", |
| 130 | + "icon": "favicon", |
| 131 | + "type": "url", |
| 132 | + "data": "https://duckduckgo.com/?q=site:{hostname_without_www}%20{selected||current_title}&ia=web" |
| 133 | + } |
| 134 | + ] |
| 135 | + }, |
5 | 136 | { |
6 | 137 | "id": "search_group_web", |
7 | 138 | "name": "网页", |
|
1000 | 1131 | } |
1001 | 1132 | ] |
1002 | 1133 | }, |
| 1134 | + { |
| 1135 | + "id": "community_group", |
| 1136 | + "name": "社区", |
| 1137 | + "icon": "lucide:users", |
| 1138 | + "match": [ |
| 1139 | + "*" |
| 1140 | + ], |
| 1141 | + "defaultOpen": "new-tab", |
| 1142 | + "items": [ |
| 1143 | + { |
| 1144 | + "id": "community_v2ex", |
| 1145 | + "name": "V2EX", |
| 1146 | + "icon": "favicon", |
| 1147 | + "type": "url", |
| 1148 | + "data": "https://www.v2ex.com/", |
| 1149 | + "openIn": "new-tab" |
| 1150 | + }, |
| 1151 | + { |
| 1152 | + "id": "community_linuxdo", |
| 1153 | + "name": "LINUX DO", |
| 1154 | + "icon": "favicon", |
| 1155 | + "type": "url", |
| 1156 | + "data": "https://linux.do/", |
| 1157 | + "openIn": "new-tab" |
| 1158 | + }, |
| 1159 | + { |
| 1160 | + "id": "community_2libra", |
| 1161 | + "name": "2Libra", |
| 1162 | + "icon": "favicon", |
| 1163 | + "type": "url", |
| 1164 | + "data": "https://2libra.com/?ref=utags-shortcuts", |
| 1165 | + "openIn": "new-tab" |
| 1166 | + }, |
| 1167 | + { |
| 1168 | + "id": "community_appinn", |
| 1169 | + "name": "小众软件", |
| 1170 | + "icon": "favicon", |
| 1171 | + "type": "url", |
| 1172 | + "data": "https://meta.appinn.net/", |
| 1173 | + "openIn": "new-tab" |
| 1174 | + } |
| 1175 | + ] |
| 1176 | + }, |
1003 | 1177 | { |
1004 | 1178 | "id": "other", |
1005 | 1179 | "name": "其他", |
|
0 commit comments