Right Click Amazon Search
Adds a right click menu allowing you to search your highlighted/selected text on any Amazon site. Supports all the Amazon sites…
什么是Right Click Amazon Search?
Right Click Amazon Search是由No Ad Extensions开发的Chrome扩展程序,该扩展的主要功能是“Adds a right click menu allowing you to search your highlighted/selected text on any Amazon site. Supports all the Amazon sites…”。
扩展截图
下载Right Click Amazon Search扩展crx文件
下载Right Click Amazon Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds a right click menu allowing you to search your highlighted/selected text on any Amazon site.
Supports all the Amazon sites worldwide! This includes the following sites and locales: [ amazon.com | smile.amazon.com | .ca | .com.mx | .com.au | .in | .it | .fr | .es | .co.jp | .de | .pl | .com.tr | .cn | .sa | .sg | .ae | .com.br | .eg | .se] 扩展基本信息
| 名称 | |
| ID | gpiaaogmhemeaflkjieknaaknnoelnom |
| 官方URL | https://chromewebstore.google.com/detail/right-click-amazon-search/gpiaaogmhemeaflkjieknaaknnoelnom |
| 简介 | Adds a right click menu allowing you to search your highlighted/selected text on any Amazon site. Supports all the Amazon sites… |
| 文件大小 | 20.59 KB |
| 安装次数 | 29 |
| 当前版本 | 1 |
| 更新时间 | 2022-03-14 |
| 上架时间 | 2022-03-14 |
| 开发者 | No Ad Extensions |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Right Click Amazon Search",
"version": "1",
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "extension_icon16.png",
"32": "extension_icon32.png",
"48": "extension_icon48.png",
"128": "extension_icon128.png"
},
"background": {
"service_worker": "bg.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"fg.js"
]
}
],
"permissions": [
"contextMenus",
"storage"
]
} | |