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.
Co to jest Amazon to Goodreads Navigator?
Amazon to Goodreads Navigator to rozszerzenie Chrome opracowane przez https://clydedsouza.net, a jego główną funkcją jest „Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Amazon to Goodreads Navigator
Pobierz pliki rozszerzeń Amazon to Goodreads Navigator w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Amazon to Goodreads Navigator |
ID | lobdefpehipabbpcefccfknigdeolkbb |
Oficjalny URL | https://chromewebstore.google.com/detail/amazon-to-goodreads-navig/lobdefpehipabbpcefccfknigdeolkbb |
Opis | Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked. |
Rozmiar pliku | 12.25 KB |
Liczba instalacji | 76 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2022-05-12 |
Data Publikacji | 2021-11-14 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | https://clydedsouza.net |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ClydeDz/amazon-goodreads-navigator-chrome-extension |
Adres URL Strony Pomocy | https://github.com/ClydeDz/amazon-goodreads-navigator-chrome-extension/issues/new/choose |
Obsługiwane Języki | 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" ] } ] } |