BookBuyer
Allows for quick searching of goodread books on an arbitrary website.
BookBuyer là gì?
BookBuyer là một tiện ích mở rộng Chrome được phát triển bởi Johnny, và tính năng chính của nó là "Allows for quick searching of goodread books on an arbitrary website.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng BookBuyer
Tải xuống các tệp mở rộng BookBuyer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | BookBuyer |
ID | ecgniefnmkclifnmohjhkbkkblgpinan |
URL Chính Thức | https://chromewebstore.google.com/detail/bookbuyer/ecgniefnmkclifnmohjhkbkkblgpinan |
Mô tả | Allows for quick searching of goodread books on an arbitrary website. |
Kích Thước Tệp | 11.48 KB |
Số Lần Cài Đặt | 99 |
Phiên Bản Hiện Tại | 1.2.1 |
Cập Nhật Lần Cuối | 2024-02-15 |
Ngày Phát Hành | 2024-01-20 |
Nhà Phát Triển | Johnny |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/JonDerThan/bookbuyer |
URL Trang Trợ Giúp | https://github.com/JonDerThan/bookbuyer/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |