使用chrome.tabs.executeScript执行异步功能

Kei*_*ith 5 javascript google-chrome-extension async-await es6-promise

我有一个我想在页面中执行的功能chrome.tabs.executeScript,从浏览器动作弹出窗口运行.权限设置正确,它可以与同步回调一起正常工作:

chrome.tabs.executeScript(
    tab.id, 
    { code: `(function() { 
        // Do lots of things
        return true; 
    })()` },
    r => console.log(r[0])); // Logs true
Run Code Online (Sandbox Code Playgroud)

问题是我想调用的函数经历了几次回调,所以我想使用asyncawait:

chrome.tabs.executeScript(
    tab.id, 
    { code: `(async function() { 
        // Do lots of things with await
        return true; 
    })()` },
    async r => {
        console.log(r); // Logs array with single value [Object]
        console.log(await r[0]); // Logs empty Object {}
    }); 
Run Code Online (Sandbox Code Playgroud)

问题是回调结果r.它应该是一个脚本结果数组,因此我希望r[0]它是一个在脚本完成时解析的promise.

Promise语法(使用.then())也不起作用.

如果我在页面中执行完全相同的函数,它会按预期返回一个promise,并且可以等待.

知道我做错了什么,有什么办法吗?

Kei*_*ith 5

问题是页面和扩展名之间不能直接使用事件和本机对象.从本质上讲,你会得到一个序列化的副本,如果你这样做的话JSON.parse(JSON.stringify(obj)).

这意味着一些本机对象(例如new Errornew Promise)将被清空(变为{}),事件将丢失,并且承诺的实现不能跨越边界.

解决方案是用于chrome.runtime.sendMessage在脚本中返回消息,并chrome.runtime.onMessage.addListener在popup.js中监听它:

chrome.tabs.executeScript(
    tab.id, 
    { code: `(async function() { 
        // Do lots of things with await
        let result = true;
        chrome.runtime.sendMessage(result, function (response) {
            console.log(response); // Logs 'true'
        });
    })()` }, 
    async emptyPromise => {

        // Create a promise that resolves when chrome.runtime.onMessage fires
        const message = new Promise(resolve => {
            const listener = request => {
                chrome.runtime.onMessage.removeListener(listener);
                resolve(request);
            };
            chrome.runtime.onMessage.addListener(listener);
        });

        const result = await message;
        console.log(result); // Logs true
    }); 
Run Code Online (Sandbox Code Playgroud)

我已经将它扩展为一个函数chrome.tabs.executeAsyncFunction(作为其中的一部分chrome-extension-async,它'宣传'整个API):

function setupDetails(action, id) {
    // Wrap the async function in an await and a runtime.sendMessage with the result
    // This should always call runtime.sendMessage, even if an error is thrown
    const wrapAsyncSendMessage = action =>
        `(async function () {
    const result = { asyncFuncID: '${id}' };
    try {
        result.content = await (${action})();
    }
    catch(x) {
        // Make an explicit copy of the Error properties
        result.error = { 
            message: x.message, 
            arguments: x.arguments, 
            type: x.type, 
            name: x.name, 
            stack: x.stack 
        };
    }
    finally {
        // Always call sendMessage, as without it this might loop forever
        chrome.runtime.sendMessage(result);
    }
})()`;

    // Apply this wrapper to the code passed
    let execArgs = {};
    if (typeof action === 'function' || typeof action === 'string')
        // Passed a function or string, wrap it directly
        execArgs.code = wrapAsyncSendMessage(action);
    else if (action.code) {
        // Passed details object https://developer.chrome.com/extensions/tabs#method-executeScript
        execArgs = action;
        execArgs.code = wrapAsyncSendMessage(action.code);
    }
    else if (action.file)
        throw new Error(`Cannot execute ${action.file}. File based execute scripts are not supported.`);
    else
        throw new Error(`Cannot execute ${JSON.stringify(action)}, it must be a function, string, or have a code property.`);

    return execArgs;
}

function promisifyRuntimeMessage(id) {
    // We don't have a reject because the finally in the script wrapper should ensure this always gets called.
    return new Promise(resolve => {
        const listener = request => {
            // Check that the message sent is intended for this listener
            if (request && request.asyncFuncID === id) {

                // Remove this listener
                chrome.runtime.onMessage.removeListener(listener);
                resolve(request);
            }

            // Return false as we don't want to keep this channel open https://developer.chrome.com/extensions/runtime#event-onMessage
            return false;
        };

        chrome.runtime.onMessage.addListener(listener);
    });
}

chrome.tabs.executeAsyncFunction = async function (tab, action) {

    // Generate a random 4-char key to avoid clashes if called multiple times
    const id = Math.floor((1 + Math.random()) * 0x10000).toString(16).substring(1);

    const details = setupDetails(action, id);
    const message = promisifyRuntimeMessage(id);

    // This will return a serialised promise, which will be broken
    await chrome.tabs.executeScript(tab, details);

    // Wait until we have the result message
    const { content, error } = await message;

    if (error)
        throw new Error(`Error thrown in execution script: ${error.message}.
Stack: ${error.stack}`)

    return content;
}
Run Code Online (Sandbox Code Playgroud)

executeAsyncFunction然后可以这样调用:

const result = await chrome.tabs.executeAsyncFunction(
    tab.id, 
    // Async function to execute in the page
    async function() { 
        // Do lots of things with await
        return true; 
    });
Run Code Online (Sandbox Code Playgroud)

在调用解析promise 之前,包装了chrome.tabs.executeScriptand chrome.runtime.onMessage.addListener,并将脚本包装在try- 中.finallychrome.runtime.sendMessage


Lev*_*sky 5

将承诺从页面传递到内容脚本不起作用,解决方案是使用chrome.runtime.sendMessage并仅在两个世界之间发送简单数据,例如:

function doSomethingOnPage(data) {
  fetch(data.url).then(...).then(result => chrome.runtime.sendMessage(result));
}

let data = JSON.stringify(someHash);
chrome.tabs.executeScript(tab.id, { code: `(${doSomethingOnPage})(${data})` }, () => {
  new Promise(resolve => {
    chrome.runtime.onMessage.addListener(function listener(result) {
      chrome.runtime.onMessage.removeListener(listener);
      resolve(result);
    });
  }).then(result => {
    // we have received result here.
    // note: async/await are possible but not mandatory for this to work
    logger.error(result);
  }
});
Run Code Online (Sandbox Code Playgroud)


小智 5

对于正在阅读本文但使用新清单版本 3 (MV3) 的任何人,请注意,现在应该支持此功能。

chrome.tabs.executeScript已被替换chrome.scripting.executeScript,并且文档明确指出“如果[注入的]脚本计算结果为承诺,浏览器将等待承诺解决并返回结果值。”