4

我正在编写一个 chrome 扩展程序,以允许用户从单个页面登录社交媒体网站。我能够创建一个新的隐身窗口,但无法操作我创建的窗口内的任何内容。我想为新窗口创建一个 onload 函数来执行 jquery。感谢您让我指出正确的方向!

4

1 回答 1

6

请参阅以下演示以操作创建的新隐身窗口并将一些 jquery 注入其中。

References

manifest file

这用于绑定权限并将后台页面注册到扩展程序。确保它具有所需的所有权限。

{
"name":"Hanlder for Incognito window",
"description":"http://stackoverflow.com/questions/14044338",
"version":"1",
"manifest_version":2,
"background":{
    "scripts":["background.js"]
},
"permissions":["tabs","http://www.google.co.in/"]
}

background.js

从后台页面将 jquery 注入新的隐身窗口。

var _tabId_To_Look_For;

// Create a new incognito Window with some arbitary URL and give it focus
chrome.windows.create({
    "url": "http://www.google.co.in/",
    "focused": true,
    "incognito": true
}, function (window) {
    // Trace tab id which is created with this query 
    _tabId_To_Look_For = window.tabs[0].id
});

// Add an event Listener for new tab created
chrome.tabs.onUpdated.addListener(function (tabId, changeInfo, tab) {
    // Inject script into chosen tab after it is loaded completely
    if (tabId == _tabId_To_Look_For && changeInfo.status == "complete") {
        // Inject Jquery and in current tab
        chrome.tabs.executeScript(tabId, {
            "file": "jquery.js"
        }, function () {
            // I am in call back
            console.log("Injected some jquery ");
        });
    }
});

确保您已启用隐身访问。

在此处输入图像描述

Output

您将看到一个注入 jquery 的新窗口。

于 2012-12-27T05:40:30.213 回答