new4u / ViSearch

Beyond the ChatGPT/AI with eyes... Google of Google
4 stars 0 forks source link

enhance: 加上中英文内容的解释 #44

Open new4u opened 1 year ago

new4u commented 1 year ago

直接用js插入html来解决 0.先用https://www.leanote.com/note/648188c54ab7e808ce000001 来做markdown的优化,再用copy as markdown

即将支持本页面的可视化……  
Coming soon on supporting visualizations on this page...  
目前支持:谷歌搜索、ChatGPT
Supported:Google search,ChatGPT
已经在排期的可视化项目:百度、Bing、维基。  
Visualization projects already scheduled: Baidu, Bing, wiki  
Github: [https://github.com/new4u/ViSearch](https://github.com/new4u/ViSearch)  
个人网站 About me: [https://www.new4u.top](https://www.new4u.top/)

### ViSearch 插件

ViSearch 是一款 Google / ChatGPT 反馈结果增强插件。当你在 Google / ChatGPT 结果页面点击插件图标,神奇将会发生。

他将会按照 核心问题->关键词->结果 的关系,用可视化语言展现所有内容页面的结果,并且根据答案内容自动按照大小和颜色进行分类。更多的内容欢迎你来探索。

1. 在 Google 搜索结果页面下,点击插件图标。
2. 自动实现可视化逻辑关联。
3. 按照 核心问题->关键词->结果 的关系,用可视化语言展现所有内容页面的结果,并且根据答案内容自动按照大小和颜色进行分类。更多的内容欢迎你来探索。

**未来愿景:**

我们的愿景是使 ViSearch 成为一个全球范围内最受欢迎的搜索结果增强插件。我们希望 ViSearch 能够为用户提供更好的搜索体验,帮助他们更轻松地找到他们需要的信息。同时,我们会不断优化 ViSearch,让它更加智能,更加易用。

### ViSearch Extension

ViSearch is a Google/ChatGPT feedback results enhancement extension. When you click the plugin icon on Google/ChatGPT results page, magic happens.

It will organize all content page results in a visual language based on the relationship of Core Question -> Keywords -> Results, and automatically categorize them by size and color based on the answer content. Explore more content with a warm welcome.

1. Click the plugin icon on Google search results page.
2. Automatically implement visual logic associations.
3. Organize all content page results in a visual language based on the relationship of Core Question -> Keywords -> Results, and automatically categorize them by size and color based on the answer content. Explore more content with a warm welcome.

**Future Vision:**

Our vision is to make ViSearch the most popular search results enhancement extension globally. We hope that ViSearch can provide users with a better search experience and help them find the information they need more easily. At the same time, we will continue to optimize ViSearch to make it smarter and more user-friendly.

1.用这个将md转换成html https://www.bejson.com/convert/html2markdown/ 1.1 再将这一段转成js https://www.bejson.com/convert/html_js/

  1. 贴入
    var text = "";
    text += "<p>即将支持本页面的可视化……<br/>Coming soon on supporting visualizations on this page...<br/>目前支持:谷歌搜索、ChatGPT";
    text += "Supported:Google search,ChatGPT";
    text += "已经在排期的可视化项目:百度、Bing、维基。<br/>Visualization projects already scheduled: Baidu, Bing, wiki<br/>Github: <a href=\"https://github.com/new4u/ViSearch\">https://github.com/new4u/ViSearch</a><br/>个人网站 About me: <a href=\"https://www.new4u.top/\">https://www.new4u.top</a></p>";
    text += "";
    text += "<h3>ViSearch 插件</h3>";
    text += "";
    text += "<p>ViSearch 是一款 Google / ChatGPT 反馈结果增强插件。当你在 Google / ChatGPT 结果页面点击插件图标,神奇将会发生。</p>";
    text += "";
    text += "<p>他将会按照 核心问题-&gt;关键词-&gt;结果 的关系,用可视化语言展现所有内容页面的结果,并且根据答案内容自动按照大小和颜色进行分类。更多的内容欢迎你来探索。</p>";
    text += "";
    text += "<ol><li>在 Google 搜索结果页面下,点击插件图标。</li><li>自动实现可视化逻辑关联。</li><li>按照 核心问题-&gt;关键词-&gt;结果 的关系,用可视化语言展现所有内容页面的结果,并且根据答案内容自动按照大小和颜色进行分类。更多的内容欢迎你来探索。</li></ol>";
    text += "";
    text += "<p><strong>未来愿景:</strong></p>";
    text += "";
    text += "<p>我们的愿景是使 ViSearch 成为一个全球范围内最受欢迎的搜索结果增强插件。我们希望 ViSearch 能够为用户提供更好的搜索体验,帮助他们更轻松地找到他们需要的信息。同时,我们会不断优化 ViSearch,让它更加智能,更加易用。</p>";
    text += "";
    text += "<h3>ViSearch Extension</h3>";
    text += "";
    text += "<p>ViSearch is a Google/ChatGPT feedback results enhancement extension. When you click the plugin icon on Google/ChatGPT results page, magic happens.</p>";
    text += "";
    text += "<p>It will organize all content page results in a visual language based on the relationship of Core Question -&gt; Keywords -&gt; Results, and automatically categorize them by size and color based on the answer content. Explore more content with a warm welcome.</p>";
    text += "";
    text += "<ol><li>Click the plugin icon on Google search results page.</li><li>Automatically implement visual logic associations.</li><li>Organize all content page results in a visual language based on the relationship of Core Question -&gt; Keywords -&gt; Results, and automatically categorize them by size and color based on the answer content. Explore more content with a warm welcome.</li></ol>";
    text += "";
    text += "<p><strong>Future Vision:</strong></p>";
    text += "";
    text += "<p>Our vision is to make ViSearch the most popular search results enhancement extension globally. We hope that ViSearch can provide users with a better search experience and help them find the information they need more easily. At the same time, we will continue to optimize ViSearch to make it smarter and more user-friendly.</p>";

    3.中文显示不正常,在popup.html加上

    
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
4.再加上一些文字
-----
改一个更简单直接的需求,用goolge搜一个我满意的内容,然后将他放在后面不就可以了吗?

1. 加一个判断,google页面之外做一个介绍。或者将这个放在背景?一气呵成
2. google页面之内,就还是按照原来。

ViSearch 插件

ViSearch 是一款 Google 搜索结果增强插件。它可以使你在 Google 搜索结果页面直接浏览图片,并且可以使用“Visually Similar Images”功能查找相似图片。如果你不是用 Google 搜索,可能需要手动开启ViSearch插件。

使用方法:

  1. 在 Google 搜索结果页面下,点击插件图标。
  2. 图片搜索:在想要搜索的图片上右键点击,选择“Search Visually Similar Images”。
  3. 搜索结果页面:点击“Visually Similar Images”按钮可以快速查找与搜索结果相似的图片。

未来愿景:

我们的愿景是使 ViSearch 成为一个全球范围内最受欢迎的搜索结果增强插件。我们希望 ViSearch 能够为用户提供更好的搜索体验,帮助他们更轻松地找到他们需要的信息。同时,我们会不断优化 ViSearch,让它更加智能,更加易用。

ViSearch Extension

ViSearch is a Google search results enhancement extension. It allows you to browse images directly on the Google search results page and use the "Visually Similar Images" function to find similar images. If you are not using Google search, you may need to manually enable the ViSearch extension.

Usage:

  1. On the Google search results page, click the extension icon.
  2. Image search: Right-click on the picture you want to search and choose "Search Visually Similar Images".
  3. Search results page: Click the "Visually Similar Images" button to quickly find images similar to the search results.

Future vision:

Our vision is to make ViSearch the most popular search results enhancement extension globally. We hope that ViSearch can provide users with a better search experience and help them find the information they need more easily. At the same time, we will continue to optimize ViSearch to make it smarter and more user-friendly.

new4u commented 1 year ago

搜索 new4u visearch top [ { "title": "Issues · new4u/ViSearch - GitHub", "url": "https://github.com/new4u/ViSearch/issues", "siteName": "GitHub", "time": null, "abstract": null, "keyWords": [ "new4u", "ViSearch" ] }, { "title": "ViSearch with Google Chrome extension", "url": "https://chrome-stats.com/d/mnhdcngdkimhejdmhihhncebpanbccil", "time": "2023年5月26日", "abstract": "ViSearch with Google is a Chrome extension by new4u. This extension has 12 weekly active users, a perfect 5.0 rating, and is most similar to ...", "keyWords": [ "ViSearch", "new4u" ] }, { "title": "ViSearch/Google of Google[Beta version]...Beyond the AI with ...", "url": "https://www.youtube.com/watch?v=wuQELy6nTjk", "time": "2023年2月9日", "abstract": "Introducing ViSearch: The Low-Carbon AI Assistant The Most Intuitive and Low-Carbon AI Assistant Today, ViSearch has migrated to the plugin ...", "keyWords": [ "ViSearch", "ViSearch" ] }, { "title": "免费试用,完美解决GPT-4的Token费用问题,专业Al玩家必备!", "url": "https://www.youtube.com/watch?v=OaQ6rrRncgk", "time": "2023年5月22日", "abstract": "CustomGPT: https://customgpt.ai/?fpr=homepage 使用优惠码ONEMONTHOFF,可得一个月免费使用 定制聊天机器人: https://customgpt.new4u.top/  ...", "keyWords": [ "new4u", "top" ] }, { "title": "User scripts - Greasy Fork", "url": "https://greasyfork.org/en/scripts?q=today%27s&sort=daily_installs", "siteName": "Greasy Fork", "time": null, "abstract": null, "keyWords": [ "ViSearch", "new4u", "ViSearch", "new4u", "top" ] } ]

new4u commented 1 year ago

压缩一下

[{"title":"Issues · new4u/ViSearch - GitHub","url":"https://github.com/new4u/ViSearch/issues","siteName":"GitHub","time":null,"abstract":null,"keyWords":["new4u","ViSearch"]},{"title":"ViSearch with Google Chrome extension","url":"https://chrome-stats.com/d/mnhdcngdkimhejdmhihhncebpanbccil","time":"2023年5月26日","abstract":"ViSearch with Google is a Chrome extension by new4u. This extension has 12 weekly active users,a perfect 5.0 rating,and is most similar to ...","keyWords":["ViSearch","new4u"]},{"title":"ViSearch/Google of Google[Beta version]...Beyond the AI with ...","url":"https://www.youtube.com/watch?v=wuQELy6nTjk","time":"2023年2月9日","abstract":"Introducing ViSearch:The Low-Carbon AI Assistant The Most Intuitive and Low-Carbon AI Assistant Today,ViSearch has migrated to the plugin ...","keyWords":["ViSearch","ViSearch"]},{"title":"免费试用,完美解决GPT-4的Token费用问题,专业Al玩家必备!","url":"https://www.youtube.com/watch?v=OaQ6rrRncgk","time":"2023年5月22日","abstract":"CustomGPT:https://customgpt.ai/?fpr=homepage 使用优惠码ONEMONTHOFF,可得一个月免费使用 定制聊天机器人:https://customgpt.new4u.top/  ...","keyWords":["new4u","top"]},{"title":"User scripts - Greasy Fork","url":"https://greasyfork.org/en/scripts?q=today%27s&sort=daily_installs","siteName":"Greasy Fork","time":null,"abstract":null,"keyWords":["ViSearch","new4u","ViSearch","new4u","top"]}]
new4u commented 1 year ago

1.放进去sample.json 2.复制给sample,并且写出判断searchtext的交叉

new4u commented 1 year ago

!!发现不行,推测是因为坐标根据其他的浏览器计算的,