BookBuyer
Allows for quick searching of goodread books on an arbitrary website.
Cos'è BookBuyer?
BookBuyer è un'estensione di Chrome sviluppata da Johnny, e la sua funzione principale è "Allows for quick searching of goodread books on an arbitrary website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BookBuyer
Scarica i file di estensione BookBuyer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | ecgniefnmkclifnmohjhkbkkblgpinan |
| URL Ufficiale | https://chromewebstore.google.com/detail/bookbuyer/ecgniefnmkclifnmohjhkbkkblgpinan |
| Descrizione | Allows for quick searching of goodread books on an arbitrary website. |
| Dimensione del File | 11.48 KB |
| Conteggio Installazioni | 99 |
| Versione Corrente | 1.2.1 |
| Ultimo Aggiornamento | 2024-02-15 |
| Data di Pubblicazione | 2024-01-20 |
| Sviluppatore | Johnny |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/JonDerThan/bookbuyer |
| URL della Pagina di Aiuto | https://github.com/JonDerThan/bookbuyer/issues |
| Lingue Supportate | 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"
]
} | |