谷歌地图不显示切换按钮_如何在Google图片搜索中重新显示“查看图片”按钮

谷歌地图不显示切换按钮

谷歌地图不显示切换按钮

Google’s image-based search engine has been a staple of the internet for more than a decade. But this morning it got a little less useful: in addition to making the reverse image search tool harder to find, the “Show Image” button has disappeared.

谷歌基于图像的搜索引擎十多年来一直是互联网的主要内容。 但是今天早上它的用处不大了:除了使反向图像搜索工具更难找到之外,“显示图像”按钮也消失了。

The button formerly functioned as a direct link to the image in question, allowing users to bypass the hosting web site itself. Its disappearance is apparently due to an agreement Google has made with the stock image provider Getty Images, in order to get the latter’s photo content included in image search results.

该按钮以前用作直接链接到相关图像的功能,允许用户绕过托管网站本身。 它的消失显然是由于Google与股票图像提供商Getty Images达成一项协议,目的是将后者的照片内容包含在图像搜索结果中。

The “View Image” button was a direct link to image files stored on web servers.
“查看图像”按钮是指向存储在Web服务器上的图像文件的直接链接。

But have no fear, web image junkies. Only a few hours after the news broke, an independent developer released a Chrome extension that returns the button to its proper place. “View Image” from developer Joshua Butt returns the button to the Google Images interface, restoring the direct link function that Google and Getty are apparently no longer interested in supporting.

但是,不用担心,网络图像迷。 消息传出后仅几个小时,一名独立开发人员发布了Chrome扩展程序,将按钮恢复到正确的位置。 开发人员Joshua Butt的“查看图像”将按钮返回到Google Images界面,恢复了Google和Getty显然不再希望支持的直接链接功能。

Using the extension is simple: just click “Add to Chrome” in the Chrome Web Store page, and the next time you search Google Images, the “View Image” button will be back in its familiar home.

使用扩展程序很简单:只需在Chrome网上应用店页面中单击“添加到Chrome”,下次您搜索Google图片时,“查看图片”按钮将返回其熟悉的位置。

We’re generally wary of recommending brand new extensions for Chrome or other browsers, but Butt has published the extension as an open source project on GitHub, and it appears to be free of the adware that’s been gradually infecting popular free extensions for the last year or so.

我们通常不建议为Chrome或其他浏览器推荐全新的扩展程序,但是Butt在GitHub上以开源项目的形式发布了该扩展程序,并且该程序似乎没有广告软件,该广告软件在过去一年中逐渐感染了流行的免费扩展程序。或者。

Left: the updated interface, sans “View Image” button. Right: button restored with extension.
左:更新的界面,没有“查看图像”按钮。 右:恢复带有扩展名的按钮。

We’ll update this article if and when similar extensions are added to the public repositories for Firefox and Opera. And if you don’t feel like using an extension for this very basic functionality, remember that you can always access the original image by right-clicking the Google Images result, then selecting “Open image in new tab.” It won’t give you the original, full-size image every time (sometimes it’ll give you a scaled-down thumbnail), but it’s worth a shot.

如果将类似的扩展名添加到Firefox和Opera的公共存储库中,则我们将更新本文。 而且,如果您不希望使用扩展程序来实现此非常基本的功能,请记住,始终可以通过右键单击Google图片结果,然后选择“在新标签页中打开图片”来访问原始图片。 它不会每次都为您提供原始的全尺寸图像(有时会为您提供按比例缩小的缩略图),但是值得一试。

翻译自: https://www.howtogeek.com/343219/how-to-bring-back-the-view-image-button-in-google-image-search/

谷歌地图不显示切换按钮

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
的输入框。 <html> <head> <title>搜索引擎</title> <style> body { text-align: center; font-family: Arial, sans-serif; } h1 { margin-top: 50px; font-size: 36px; font-weight: bold; } form { margin-top: 50px; } input[type="text"] { padding: 10px; width: 400px; border-radius: 5px; border: none; box-shadow: 0 0 5px #ccc; font-size: 18px; outline: none; } input[type="submit"] { padding: 10px 20px; background-color: #4285f4; color: #fff; border: none; border-radius: 5px; font-size: 18px; cursor: pointer; transition: background-color 0.3s; } input[type="submit"]:hover { background-color: #3367d6; } button { margin: 20px 5px; padding: 10px 20px; background-color: #fff; color: #4285f4; border: none; border-radius: 5px; font-size: 18px; cursor: pointer; outline: none; box-shadow: 0 0 5px #ccc; transition: background-color 0.3s; } button.active { background-color: #4285f4; color: #fff; } button:hover { background-color: #f2f2f2; } </style> </head> <body> <h1>搜索引擎</h1> <form action="#" method="get"> <input type="text" name="q" placeholder="请输入搜索内容"> <input type="submit" value="搜索"> </form> <div> <button class="active">Google</button> <button>Bing</button> <button>百度</button> <button>搜狗</button> <button>360搜索</button> <button>好搜</button> <button>谷歌学术</button> <button>必应学术</button> <button>知网</button> <button>百度学术</button> <button>豆瓣</button> <button>淘宝</button> <button>京东</button> <button>天猫</button> <button>苏宁</button> <button>唯品会</button> <button>当当</button> <button>新浪微博</button> <button>微信公众号</button> </div> <script> var buttons = document.querySelectorAll('button'); var form = document.querySelector('form'); buttons.forEach(function(button) { button.addEventListener('click', function() { buttons.forEach(function(btn) { btn.classList.remove('active'); }); button.classList.add('active'); form.action = 'https://www.' + button.innerHTML.toLowerCase() + '.com/search'; }); }); </script> </body> </html>

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值