BookBuyer
Allows for quick searching of goodread books on an arbitrary website.
What is BookBuyer?
BookBuyer is a Chrome extension developed by Johnny, and its main feature is "Allows for quick searching of goodread books on an arbitrary website.".
Extension Screenshots
Download BookBuyer Extension CRX File
Download BookBuyer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | BookBuyer |
ID | ecgniefnmkclifnmohjhkbkkblgpinan |
Official URL | https://chromewebstore.google.com/detail/bookbuyer/ecgniefnmkclifnmohjhkbkkblgpinan |
Description | Allows for quick searching of goodread books on an arbitrary website. |
File Size | 11.48 KB |
Installation Count | 99 |
Current Version | 1.2.1 |
Last Updated | 2024-02-15 |
Publish Date | 2024-01-20 |
Developer | Johnny |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/JonDerThan/bookbuyer |
Help Page URL | https://github.com/JonDerThan/bookbuyer/issues |
Supported Languages | 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" ] } |