I want to create a chrome extension that takes in some text, then opens a website, and tries to write that text to the textfield. This is what I have:
chrome.omnibox.onInputEntered.addListener(
function(text) {
chrome.tabs.create({url:"http://www.editpad.org/"});
document.getElementById("text").value = txt; //.innerHTML = txt
alert('You just typed "' + text + '"');
});
I got the ID from just inspecting the element. What do I need to do so it writes?
Your code runs in the context of the (invisible) background or event page. In order to "switch" to the execution context of the page you've just opened, you need to use a content script (programatically, "on the fly", using
chrome.tabs.executeScript
).The annotated code below shows how to achieve the result you want.