javascript – 在Google文档中捕获文本选择
作者:互联网
我正在编写Chrome扩展程序,用于捕获用户文本选择并将所选文本发送到Google搜索.
的manifest.json
{
"manifest_version": 2,
"name": "Selection Extension",
"description": "Search your selected text",
"version": "1.0",
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Mark it!!"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"]
}
]
content_script.js
chrome.extension.onMessage.addListener(function(request, sender, sendResponse) {
if (request.method == "getSelection") {
sendResponse({data: window.getSelection().toString()});
} else {
sendResponse({});
}
});
background.js
function initBackground() {
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.tabs.sendMessage(tab.id, {method: "getSelection"}, function(response){
sendServiceRequest(response.data);
});
});
}
function sendServiceRequest(selectedText) {
var serviceCall = 'http://www.google.com/search?q=' + selectedText;
chrome.tabs.create({url: serviceCall});
}
initBackground();
此代码适用于网页(例如Gmail,Facebook,新闻)中的选择.
我还希望能够选择PDF和Google Docs(在浏览器中查看).
在这些情况下:window.getSelection返回一个空字符串…
有人知道怎么做吗?
解决方法:
Google文档文档并不真正遵循从扩展程序访问文本的常规方法.
因此我创建了一个使用Google Docs的工具,可以找到here
这应该使您能够:
//contentScript.js
var googleDocument = googleDocsUtil.getGoogleDocument();
console.log("The selected text is: " + googleDocument.selectedText);
标签:textselection,javascript,google-chrome-extension,google-docs 来源: https://codeday.me/bug/20191007/1868921.html