自定义 Google 自定义搜索

发布于 2024-07-09 16:18:01 字数 227 浏览 9 评论 0 原文

有谁知道如何删除谷歌自定义搜索上的额外品牌?

他们添加了一个按钮和其他内容,例如“由谷歌提供支持的小工具”的文字。

必须有一种方法可以将 CSE 数据转换为正常形式,对吗?

http://www.google.com/coop/cse/

Does anyone know how to remove the extra branding on the google custom search?

they've added a button and other things like text that says "gadgets powered by google".

there has to be a way to pipe the CSE data into a normal form, right?

http://www.google.com/coop/cse/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

¢好甜 2024-07-16 16:18:01

我想正常的方法是购买他们的 商业版 ;)

似乎仍然有一些可能进行调整:这个 自定义搜索表单看起来不错。

I guess the normal way is to buy their Business edition ;)

Still there seems to be some tweaking possible: this custom search form does not look bad.

献世佛 2024-07-16 16:18:01

您只需添加到自己的 CSS 即可进行一些调整。 这些调整的最佳部分是您不需要成为付费客户!

更改字体大小并删除 Google 品牌:

input.gsc-input {
   font-size: 11px; 
   height: 16px !important;
   background: none !important;
}

更改自动完成字体大小:

.gsc-completion-container table {
    font-size: 11px;
}

更改搜索框的边框半径:

.gsc-input-box {
    border-radius: 3px !important;
}

*** 隐藏广告(我个人最喜欢的)

.gsc-adBlockVertical, .gsc-adBlock { /* this hides both the top and right ad blocks*/
    display:none;
}
.gsc-thinWrapper { /* this gives you use of the whole block, as opposed to 69% google gives*/
    width: 100%;
}

You can make some tweaks by simply adding to your own CSS. The best part about these tweaks is that you don't need to be a paying customer!

Change font size and remove Google branding:

input.gsc-input {
   font-size: 11px; 
   height: 16px !important;
   background: none !important;
}

Change autocomplete font size:

.gsc-completion-container table {
    font-size: 11px;
}

Change border radius of the search box:

.gsc-input-box {
    border-radius: 3px !important;
}

*** Hide Ads (my personal favorite)

.gsc-adBlockVertical, .gsc-adBlock { /* this hides both the top and right ad blocks*/
    display:none;
}
.gsc-thinWrapper { /* this gives you use of the whole block, as opposed to 69% google gives*/
    width: 100%;
}
冰雪梦之恋 2024-07-16 16:18:01

商业版的主要好处是搜索结果中没有广告。 所以谷歌真的不应该关心人们是否在免费服务上修改搜索表单,因为它仍然会给他们带来广告收入。

我查看了您链接到的页面,它可能已经过时,导致他们的最新代码吐出 javascript,所以没有什么是真正清楚的。

我认为有一种方法可以获取我的 api 代码并将其弹出到普通形式的脚本中。

well the business edition's main benefit is that the search results don't have ads in them. so really google shouldn't care if people are modding the search form on the free service since it will still bring them ad revenue.

i looked at the page you linked to, it might out of date cause their latest code spits out javascript, so nothing's really clear.

i think there's a way to grab my api code and pop it into a normal form script.

习惯成性 2024-07-16 16:18:01

2020 年,您可以通过以下方式执行此操作(至少在独立结果页面上):

<head>
  <style>
    .gcsc-find-more-on-google-branding {
      display: none!important;
    }
    .gsc-adBlock {
      display: none!important;
    }
  </style>
</head>

In 2020 You can do this (on your standalone results page at least) with:

<head>
  <style>
    .gcsc-find-more-on-google-branding {
      display: none!important;
    }
    .gsc-adBlock {
      display: none!important;
    }
  </style>
</head>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文