chrome 左右tab_在Google Chrome中激活重新设计的New-Tab界面

chrome 左右tab

chrome 左右tab

Been hearing about the freshly redesigned (and customizable) new-tab interface in Google Chrome? Now you too can start enjoying all that redesigned new-tab goodness with a simple tweak.

是否听说过Google Chrome浏览器中全新设计(和可自定义)的新标签界面? 现在,您也可以通过简单的调整就可以享受所有重新设计的新标签优点。

Note: You will need to be using the newest Dev Channel release of Chrome (version 3.0.191.3) to activate this. To get your installation of Google Chrome set up on the Dev Channel, check out our article here.

注意:您需要使用最新的Dev Channel版本的Chrome(版本3.0.191.3)来激活此功能。 要在Dev Channel上安装Google Chrome,请 在此处 查看我们的文章

Before

之前

A quick look at the old new-tab interface…looks ok, but time to have fun with the new design!

快速浏览旧的新选项卡界面…看起来还可以,但是有时间尝试使用新设计!

tab-page-01

Get Chrome Set Up for the Redesigned New-Tab Interface

为重新设计的New-Tab界面设置Chrome设置

You will need to do a little bit of prep work to get Chrome ready to display the redesigned new-tab interface. Locate the shortcut(s) for Chrome and right click on them. Select “Properties”.

您需要做一些准备工作,以使Chrome准备好显示重新设计的新标签页界面。 找到Chrome的快捷方式,然后右键单击它们。 选择“属性”。

tab-page-00

Once you have clicked through, you will see the “Properties” window with the “Shortcut” tab displayed.

单击后,将显示“属性”窗口,其中显示“快捷方式”选项卡。

tab-page-02

In the address area for “Target:” you will need to add the following command to the end of the target path making certain to leave a single space in between the final quote mark and the redesigned new-tab interface command.

在“目标:”的地址区域中,您需要在目标路径的末尾添加以下命令, 并确保在最终引号和重新设计的new-tab接口命令之间留一个空格

tab-page-03

Here is an example of what the the target path should look like…

这是目标路径应为什么样的示例……

tab-page-04

Or as an example, here is what your target path could look like if you have enabled extensions, user scripts, and the redesigned new-tab interface.

或者作为示例,如果启用了扩展,用户脚本和重新设计的新选项卡界面,则目标路径如下所示。

tab-page-05

Once you have that finished, click “Apply”, then “OK”.

完成后,单击“应用”,然后单击“确定”。

What the Redesigned New-Tab Interface Looks Like

重新设计的New-Tab界面是什么样的

When you start Chrome and open a new tab, this is the default layout that will display for you. If this style does not suit your needs or is not aesthetically pleasing to you, it is very simple to customize the layout (wonderful!).

启动Chrome并打开新标签时,这是将为您显示的默认布局。 如果此样式不适合您的需求或在美学上不令人满意,则自定义布局非常简单( 妙极了! )。

tab-page-06

To make changes to the layout, go to the upper right corner of the tab window. You will see three buttons there. The first is to display thumbnails of webpages, the second is to display those webpages as a list, and the third allows you to hide or display thumbnails, the webpage list, recent activities and recommendations.

要更改布局,请转到选项卡窗口的右上角。 您将在此处看到三个按钮。 第一种是显示网页的缩略图,第二种是将这些网页显示为列表,第三种是可以隐藏或显示缩略图,网页列表,近期活动和建议。

tab-page-07

The New-Tab Interface with a list of webpages instead of thumbnails…

带有页面列表而不是缩略图的New-Tab界面…

tab-page-08

Hide the webpage thumbnails and list…

隐藏网页缩略图和列表…

tab-page-09

Want the ultimate in blank? Hide everything!

想要终极空白吗? 隐藏一切!

tab-page-10

Additional Thumbnail Options

其他缩略图选项

As you can see in the screenshot, you can now pin webpage thumbnails to the tab page permanently or delete them by clicking on the “X”. You can also drag-and-drop the thumbnails to suit your preferences.

如您在屏幕快照中所见,您现在可以将网页缩略图永久固定在选项卡页上,或通过单击“ X”将其删除。 您也可以根据自己的喜好拖放缩略图。

tab-page-11

Have fun with the redesigned New-Tab Interface!

重新设计的New-Tab界面让您玩得开心!

翻译自: https://www.howtogeek.com/howto/2394/activate-the-redesigned-new-tab-interface-in-google-chrome/

chrome 左右tab

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: Chrome插件可以通过监听用户的操作来实现一些功能。具体的监听操作包括鼠标点击、键盘按键、页面加载、页面关闭等。 通过使用chrome.runtime.onInstalled.addListener()函数可以监听插件的安装事件,即当用户第一次安装插件时触发。通过该事件,我们可以执行一些初始化操作,例如存储一些默认设置或者向用户展示新安装插件的欢迎页面。 对于页面加载事件,我们可以使用chrome.webNavigation.onCompleted.addListener()来监听用户打开新的页面或者刷新页面的行为。通过该事件,我们可以在页面加载完成后执行一些自定义操作,例如修改页面内容、注入自定义脚本等。 对于鼠标点击事件,我们可以使用chrome.tabs.onUpdated.addListener()来监听用户在浏览器窗口的点击行为。通过该事件,我们可以判断用户是否点击了浏览器窗口的某个按钮或者标签页,并根据点击的位置和动作执行相应的操作。 除此之外,Chrome插件还可以监听用户的键盘按键事件。通过使用chrome.commands.onCommand.addListener()函数,我们可以设置插件在用户按下特定的键盘快捷键时触发某些功能。例如,我们可以设置快捷键Ctrl+S来保存当前页面,或者设置快捷键Ctrl+Shift+E来启用或禁用插件功能。 通过监听这些操作事件,Chrome插件可以实现更加个性化和智能化的功能,提升用户体验。 ### 回答2: Chrome 插件可以通过监听页面操作来实现对用户行为的感知和响应。下面是一些常见的监听页面操作的方法: 1. 监听页面加载事件:可以使用`chrome.tabs.onUpdated`事件监听页面是否加载完成。通过监听`chrome.webNavigation.onCompleted`事件,可以实现在页面加载完成后执行某些操作。例如,可以在页面加载完成后向服务器发送请求,获取相关数据。 2. 监听点击事件:可以使用`chrome.tabs.onActivated`事件监听当前激活的标签页,并通过`chrome.tabs.get`方法获取标签页的详细信息。通过监听`chrome.tabs.onUpdated`事件,可以获取到标签页的更新信息,包括用户的点击操作。 3. 监听表单提交事件:在`chrome.webRequest.onBeforeRequest`事件,可以监听到用户提交表单的请求。可以通过监听这个事件,获取表单提交的数据,并做一些后续的处理。例如,可以在发送表单数据之前,对数据进行加密或者校验。 4. 监听鼠标滚动事件:可以通过`chrome.runtime.onMessage`方法监听鼠标滚动事件,并在回调函数实现相应的处理逻辑。这样可以实现自定义的滚动操作,根据用户滚动的方向和距离,执行不同的操作。 5. 监听键盘事件:可以通过`chrome.commands.onCommand`方法监听键盘事件,获取用户按下的键和组合键。通过监听键盘事件,可以实现捕捉用户的快捷键操作,并执行相应的操作。例如,可以在用户按下某个快捷键时,打开一个新的标签页或者执行某个特定的功能。 通过监听页面操作,Chrome 插件可以实现对用户行为的感知和响应,从而达到更好的用户交互和个性化定制的效果。 ### 回答3: Chrome浏览器提供了许多插件(或扩展程序)来扩展浏览器的功能。其一种功能是可以监听页面操作。 监听页面操作意味着插件可以捕捉用户在浏览器执行的操作,并根据这些操作做出相应的反应。这些操作可以包括点击链接、填写表单、滚动页面等。 具体而言,插件可以通过添加事件监听器来监听页面操作。通过这种方式,插件可以捕获用户在浏览器执行的各种事件。例如,插件可以添加一个点击事件监听器,当用户点击浏览器的某个元素时,插件可以获得该元素的信息,并执行相应的动作。 除了事件监听器,插件还可以使用Chrom浏览器提供的API来监听页面操作。例如,可以使用chrome.tabs API来监听页面标签页的操作,包括切换标签、打开新标签、关闭标签等。另外,还可以使用chrome.contextMenus API来监听页面右键菜单的操作。 通过监听页面操作,插件可以实现很多有用的功能,例如记录用户的浏览记录、自动填充表单、拦截广告等。但需要注意的是,插件必须获得用户的授权才能监听页面操作,以确保用户的隐私和安全。 总之,通过监听用户在浏览器的操作,插件可以实现更多的功能,并提供更好的用户体验。但需要谨慎使用这一功能,以保护用户的隐私和安全。

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值