Search web in side panel , Chrome 被强迫右键 side 搜索了

2023-08-08 15:15:56 +08:00
 morgan1freeman
Search web in side panel , Chrome 被强迫右键 side 搜索了

有什么办法解决

网上搜索到的两个 选项我都 disable 掉了,右键还是 search google for XXXX new
432 次点击
所在节点    问与答
1 条回复
morgan1freeman
2023-08-08 19:33:09 +08:00
main.js

```javascript
chrome.contextMenus.create({
title: "Search Google for '%s'",
contexts: ["selection"],
onclick: function(info, tab) {
chrome.tabs.create({
url: "https://www.google.com/search?q=" + encodeURIComponent(info.selectionText)
})
}
});
```

manifest.json
```json
{
"manifest_version": 2,
"name": "Right Click Search Google",
"version": "1.0",
"description": "Search selected text on Google with just a right-click.",
"permissions": [
"contextMenus"
],
"background": {
"scripts": ["main.js"],
"persistent": true
}
}
```

popup.html

```html

<!doctype html>
<html>
<head>
<title>Right Click Search Google</title>
</head>
<body>
<h1>Right Click Search Google</h1>
<p>This plugin allows you to search selected text on Google with just a right-click.</p>
</body>
</html>

```

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/963394

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX