Amazon to Goodreads Navigator
Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked.
Was ist Amazon to Goodreads Navigator?
Amazon to Goodreads Navigator ist eine Chrome-Erweiterung, die von https://clydedsouza.net entwickelt wurde, und ihr Hauptmerkmal ist "Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked.".
Erweiterungsscreenshots
Amazon to Goodreads Navigator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Amazon to Goodreads Navigator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Adds a 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads using a single click. Why? When I come across a book that I like on Amazon, I immediately want to head over to its Goodreads page and save it to my 'Want to read' list. However, this process is tedious as I have to manually open up Goodreads and search for the book before I can actually click that button. This Chrome extension removes the need for multiple steps. Just click on the 'View in Goodreads' button to directly open up that book's Goodreads page. Easy as! Happy reading!
Grundlegende Informationen zur Erweiterung
Name | Amazon to Goodreads Navigator |
ID | lobdefpehipabbpcefccfknigdeolkbb |
Offizielle URL | https://chromewebstore.google.com/detail/amazon-to-goodreads-navig/lobdefpehipabbpcefccfknigdeolkbb |
Beschreibung | Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked. |
Dateigröße | 12.25 KB |
Installationsanzahl | 76 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2022-05-12 |
Veröffentlichungsdatum | 2021-11-14 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://clydedsouza.net |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/ClydeDz/amazon-goodreads-navigator-chrome-extension |
Hilfeseite URL | https://github.com/ClydeDz/amazon-goodreads-navigator-chrome-extension/issues/new/choose |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Amazon to Goodreads Navigator", "description": "Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked.", "version": "1.0.0", "author": "Clyde D'Souza", "homepage_url": "https:\/\/github.com\/ClydeDz\/amazon-goodreads-navigator-chrome-extension", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.amazon.com\/*", "*:\/\/*.amazon.es\/*", "*:\/\/*.amazon.in\/*", "*:\/\/*.amazon.sg\/*", "*:\/\/*.amazon.cn\/*", "*:\/\/*.amazon.com.tr\/*", "*:\/\/*.amazon.com.ae\/*", "*:\/\/*.amazon.com.sa\/*", "*:\/\/*.amazon.pl\/*", "*:\/\/*.amazon.se\/*", "*:\/\/*.amazon.co.jp\/*", "*:\/\/*.amazon.fr\/*", "*:\/\/*.amazon.de\/*", "*:\/\/*.amazon.it\/*", "*:\/\/*.amazon.nl\/*", "*:\/\/*.amazon.co.uk\/*", "*:\/\/*.amazon.ca\/*", "*:\/\/*.amazon.com.mx\/*", "*:\/\/*.amazon.com.au\/*", "*:\/\/*.amazon.com.br\/*", "*:\/\/smile.amazon.com\/*", "*:\/\/smile.amazon.es\/*", "*:\/\/smile.amazon.in\/*", "*:\/\/smile.amazon.sg\/*", "*:\/\/smile.amazon.cn\/*", "*:\/\/smile.amazon.com.tr\/*", "*:\/\/smile.amazon.com.ae\/*", "*:\/\/smile.amazon.com.sa\/*", "*:\/\/smile.amazon.pl\/*", "*:\/\/smile.amazon.se\/*", "*:\/\/smile.amazon.co.jp\/*", "*:\/\/smile.amazon.fr\/*", "*:\/\/smile.amazon.de\/*", "*:\/\/smile.amazon.it\/*", "*:\/\/smile.amazon.nl\/*", "*:\/\/smile.amazon.co.uk\/*", "*:\/\/smile.amazon.ca\/*", "*:\/\/smile.amazon.com.mx\/*", "*:\/\/smile.amazon.com.au\/*", "*:\/\/smile.amazon.com.br\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ] } |