39

我正在寻找一种将所选文本放入我的 Chrome 扩展程序的方法。

我想前任。在 facebook feed 中选择一个文本,当我点击我的图标时,它会得到它并在我的扩展中显示选定的文本。

到目前为止我得到了这个:

chrome.tabs.executeScript(null, {
  code: "alert(window.getSelection().toString());"
})

它获取选定的文本并在 Chrome 中用一条消息提醒它。但是我想在我的 html 弹出窗口中显示它。我想这样写出来:

document.getElementById("output").value = "Selected text here(but how)"

需要帮忙!我知道对此还有其他问题,但他们并没有给我我想要的东西..

4

3 回答 3

43

您可以在回调函数中使用执行代码评估的最后一个表达式:

chrome.tabs.executeScript( {
  code: "window.getSelection().toString();"
}, function(selection) {
  document.getElementById("output").value = selection[0];
});
于 2013-10-03T17:57:33.457 回答
5

您可以使用Extensions Messaging来做到这一点。基本上,您的“背景页面”会将请求发送到您的服务。例如,假设您有一个“弹出窗口”,一旦您单击它,它将执行“Google 搜索”,这是您的服务。

chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
    if (request.method == "getSelection")
      sendResponse({data: window.getSelection().toString()});
    else
      sendResponse({}); // snub them.
});

一些参考资料

  1. 创建一个 chrome 扩展,它将页面上突出显示的文本插入到 popup.html 中的文本区域中

或者你可以使用这个插件

  1. https://chrome.google.com/webstore/detail/view-selection-source/fbhgckgfljgjkkfngcoeajbgndkeoaaj
于 2013-10-03T16:34:48.173 回答
3

对于 Angular 8.2,我使用以下代码:

chrome.tabs.executeScript( { code: 'window.getSelection().toString();'}, selectedText => {
 (document.getElementById('text-input') as HTMLInputElement).value = selectedText[0];
  console.log(selectedText[0]);
});
于 2019-12-27T12:59:46.257 回答