gpt4 book ai didi

javascript - Chrome Extension : While Capturing Desktop, 所选窗口集中在前面

转载 作者:行者123 更新时间:2023-11-30 10:01:36 26 4
gpt4 key购买 nike

伙计们,我有一个 chrome 扩展程序,它使用 chrome.desktopCapturenavigator.webkitGetUserMediacanvas 捕获选定桌面窗口的图像。当我要求用户选择要共享的窗口时,所选窗口会聚焦到前面。

这是我的代码 -

list .json -

{
"name": "Desktop Capture Example",
"description": "Show desktop media picker UI",
"version": "1",
"manifest_version": 2,
"background": {
"persistent": false,
"scripts": ["background.js"]
},
"browser_action": {
"default_title": "Take a screen shot of Desktop!"
},
"permissions": [
"desktopCapture"
]
}

背景.js -

var pending_request_id = null;

chrome.browserAction.onClicked.addListener(function() {

pending_request_id = chrome.desktopCapture.chooseDesktopMedia(["screen", "window"],onAccessApproved);

});

function gotStream(stream) {
console.log("Received local stream");
var video = document.createElement('video');
video.addEventListener('loadedmetadata',function(){
var canvas = document.createElement('canvas');
canvas.width = this.videoWidth;
canvas.height = this.videoHeight;
var ctx = canvas.getContext("2d");
ctx.drawImage(this, 0, 0);
var url = canvas.toDataURL();
console.log(url);
// will open the captured image in a new tab
//window.open(url);
},false);
video.src = URL.createObjectURL(stream);
video.play();
}

function getUserMediaError() {
console.log("getUserMedia() failed.");
}

function onAccessApproved(id) {
if (!id) {
console.log("Access rejected.");
return;
}
navigator.webkitGetUserMedia({
audio:false,
video: { mandatory: { chromeMediaSource: "desktop",
chromeMediaSourceId: id,
maxWidth: 4000,
maxHeight: 4000} }
}, gotStream, getUserMediaError);
}

但是,如果我使用 window.open(url),焦点将设置到这个打开的窗口而不是共享窗口。但是如果我使用 chrome.tabs.create({url: url,active : true},function(tab){}) 打开 url 而不是使用 window.open,共享窗口将集中在打开的选项卡顶部。我希望打开的选项卡聚焦而不是共享窗口。我该怎么做?

最佳答案

您需要使用 chrome.tabs api 通过更新方法切换事件标签:https://developer.chrome.com/extensions/tabs#method-update

在 Chrome 33 之前,您可以这样做:

chrome.tabs.update(tabId, {selected: true});

我相信这会变成这样:

chrome.tabs.update(tabId, {active: true});

根据选项卡的对齐方式,您可能还需要 chrome.windows api:chrome.windows.update,查看 focused 参数(在 chrome.tabs api 文档中也有提及)。

编辑:设置了错误的属性,已更正。

关于javascript - Chrome Extension : While Capturing Desktop, 所选窗口集中在前面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31341556/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com