谷歌浏览器点击标签之后停留在当前页面


在chrome浏览器添加扩展程序,可以点击<a href后仍然停留在当前页。

在桌面新建两个TXT文本文件,以下代码内容和图标相匹配

chrome.tabs.onCreated.addListener(function (tab) {
    chrome.tabs.getAllInWindow(function (tabs) {
        tabs.forEach(function (value, index,array) {
            if (value.id == tab.id) {
                chrome.tabs.update(array[index - 1].id, {
                    selected : true
                });
                return;
            }
        });
    })
});

{
  "name": "Stay current tab",
  "description": "Stay current tab page when open new tab page",
  "version": "0.2",
  "permissions": [
    "tabs"
  ],
  "background": {
  "scripts": ["background.js"]
  },
  "manifest_version": 2
}

**

最后编写好的两个文件放到同一个文件夹中

**
然后启动google浏览器:扩展程序

随后点击加载已解压程序,寻找到刚才的放入两个文件的文件夹即可!

成功导入!

声明:ByTeam|路人|版权所有,违者必究|如未注明,均为原创|本网站采用BY-NC-SA协议进行授权

转载:转载请注明原文链接 - 谷歌浏览器点击标签之后停留在当前页面


且听风吟,等待花开