我正在编写一个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
返回一个空字符串...
有人知道怎么做吗?
答案 0 :(得分:8)
Google文档文档并不真正遵循从扩展程序访问文本的常规方法。 因此,我创建了一个使用Google文档的工具,可以找到here
这可以让你:
//contentScript.js
var googleDocument = googleDocsUtil.getGoogleDocument();
console.log("The selected text is: " + googleDocument.selectedText);
答案 1 :(得分:1)
您可以从上下文菜单中获取此信息。我打赌你还要添加一个上下文菜单项。
chrome.contextMenus.create({
id:"g-search",
title:"Search %s",
contexts:["selection"]
});
chrome.contextMenus.onClicked.addListener(function(sel){
console.log(sel.selectionText);
});
答案 2 :(得分:0)
我为他的项目创建了一个分支,然后完全重写了他的项目以根据我自己的需要采用它。保留了核心概念,但现在更易于使用,因为它同时支持 IIFE 和 CJS。
所以,这里是 google-docs-utils
包:
您可以在 Node.js 中或直接在浏览器中使用它:
npm install google-docs-utils
这是使用 google-docs-utils
包解决您的任务的代码:
const linesData = GoogleDocsUtils.getSelection();
let selectionData = null;
for (const lineData of linesData) {
if (lineData) {
selectionData = lineData;
// we handle only single selection
break;
}
}
if (selectionData) {
console.log(selectionData.selectedText);
}