1 Star 0 Fork 0

土生土长 / zanzan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 788 Bytes
一键复制 编辑 原始数据 按行查看 历史
zxy7 提交于 2020-05-21 17:53 . zanzan tool
let fullWidth=1440
let fullHeight=900
let newTabUrl=''
document.querySelector("#splitScreen").addEventListener("click", ()=>{
fullWidth=window.screen.width
fullHeight=window.screen.height
chrome.windows.getCurrent((win)=>{
chrome.windows.update(win.id,{
width:fullWidth/2,
height:fullHeight,
top:0,
left:0
}, ()=>{})
});
chrome.tabs.query({active: true,currentWindow: true, highlighted: true},
(tabs) =>{
newTabUrl=tabs[0].url
//创建新窗口
chrome.windows.create({
width:fullWidth/2,
height:fullHeight,
top:0,
left:fullWidth/2,
url:newTabUrl,
},()=>{});
});
});
1
https://gitee.com/opopi/zanzan.git
git@gitee.com:opopi/zanzan.git
opopi
zanzan
zanzan
master

搜索帮助