我正在創建一個可以讀取剪貼板內容的Google Chrome擴展。
但我無法得到這個文件。我想要在IE的剪貼板API中獲得剪貼板內容。
在manifest文件中我給的權限爲什麼document.execCommand('paste')在我的擴展中不起作用
clipboardRead and clipboardWrite.
我已經創造了後臺頁面的功能如下
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);
});
功能
但是,這返回給我undefined ...
[如何閱讀Chrome瀏覽器擴展中的剪貼板文本](http:/ /stackoverflow.com/questions/8509670/how-to-read-the-clipboard-text-in-google-chrome-extension) –