This function has a callback like function(array of any result) {...};
But I don't know what is the result means.
For example,
chrome.tabs..executeScript(null,
{code:"var x = 10"},
function(){});
how to return the x
to the callback?
This function has a callback like function(array of any result) {...};
But I don't know what is the result means.
For example,
chrome.tabs..executeScript(null,
{code:"var x = 10"},
function(){});
how to return the x
to the callback?
The result of a script is the last expression being evaluated. So in your example you could use:
chrome.tabs.executeScript( null, {code:"var x = 10; x"},
function(results){ console.log(results); } );
This will log [10] to the extension's console.
results is actually an array of values because if the page has more than one frame you can specify that the script should be injected in each one of them and get the result of all injections. See the specification for executeScript. If you don't specify allFrames: true, then results will always be a single element array.
chrome.tabs.executeScript( null, {code:"var x = 10; x"}, function(results){ alert(results); } );
but gets undefined as an alert. Do you have any clue why this might happen? –
Kinsler permissions
setting of your manifest.json
–
Rockefeller try..catch
and always return a structured clonable
type (a string will do, an error won't) –
Edik © 2022 - 2024 — McMap. All rights reserved.