我正在嘗試閱讀Google Chrome擴展中的剪貼板文本。到目前爲止,我已經嘗試過使用這些代碼,並且它返回給我的是未定義的。請幫助我。如何閱讀谷歌Chrome擴展中的剪貼板文本
在background.html我的代碼是
chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
if (request.method == "getClipData")
sendResponse({data: document.execCommand('paste')});
else
sendResponse({}); // snub them.
});
在我的內容腳本我的代碼是
chrome.extension.sendRequest({method: "getClipData"}, function(response) {
alert(response.data);
});
[爲什麼document.execCommand('paste')不能在我的擴展中工作](http://stackoverflow.com/questions/8503738/why-document-execcommandpaste-is-not-working-in -my-extension) – pimvdb 2011-12-14 18:29:23