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.
拡張機能の基本情報
名前 | BookBuyer |
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 |
Eメール | [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" ] } |