BookBuyer
Allows for quick searching of goodread books on an arbitrary website.
什么是BookBuyer?
BookBuyer是由Johnny开发的Chrome扩展程序,该扩展的主要功能是“Allows for quick searching of goodread books on an arbitrary website.”。
扩展截图
下载BookBuyer扩展crx文件
下载BookBuyer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Displays search links besides each book on goodreads. The links point to a search on an arbitrary, configurable site. Example sites could be amazon.com, google.com or worldcat.org. 扩展基本信息
| 名称 | |
| ID | ecgniefnmkclifnmohjhkbkkblgpinan |
| 官方URL | https://chromewebstore.google.com/detail/bookbuyer/ecgniefnmkclifnmohjhkbkkblgpinan |
| 简介 | Allows for quick searching of goodread books on an arbitrary website. |
| 文件大小 | 11.48 KB |
| 安装次数 | 99 |
| 当前版本 | 1.2.1 |
| 更新时间 | 2024-02-15 |
| 上架时间 | 2024-01-20 |
| 开发者 | Johnny |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/JonDerThan/bookbuyer |
| 帮助页面URL | https://github.com/JonDerThan/bookbuyer/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "BookBuyer",
"author": "JonDerThan",
"version": "1.2.1",
"description": "Allows for quick searching of goodread books on an arbitrary website.",
"homepage_url": "https:\/\/github.com\/JonDerThan\/bookbuyer",
"icons": {
"16": "bookbuyer-favicon.png"
},
"action": {
"default_icon": "bookbuyer-favicon.png",
"default_title": "BookBuyer",
"default_popup": "options.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.goodreads.com\/*"
],
"js": [
"bookbuyer.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"bookbuyer-favicon.png",
"options.html"
],
"matches": [
"https:\/\/www.goodreads.com\/*"
]
}
],
"options_ui": {
"page": "options.html"
},
"permissions": [
"storage"
]
} | |