browser.tabs.update


本文作者: jsweibo

本文链接: https://jsweibo.github.io/2019/02/21/browser-tabs-update/

摘要

本文主要讲述了:

  1. 许可配置
  2. 更新 tab

正文

许可配置

browser.tabs.update()不需要申请许可也能使用

更新 tab

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
browser.tabs
.query({
active: true,
currentWindow: true,
})
.then((tabs) => {
browser.tabs
.update(tabs[0].id, {
url: 'https://bing.com',
})
.then((res) => {
console.log(res);
})
.catch((error) => {
console.log(error);
});
})
.catch((error) => {
console.log(error);
});

参考资料

本文作者: jsweibo

本文链接: https://jsweibo.github.io/2019/02/21/browser-tabs-update/


本文对你有帮助?请支持我


支付宝
微信