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 je Amazon to Goodreads Navigator?

Amazon to Goodreads Navigator je rozšíření Chrome vyvinuté https://clydedsouza.net, a jeho hlavní funkcí je „Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Amazon to Goodreads Navigator

Stáhněte si soubory rozšíření Amazon to Goodreads Navigator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Amazon to Goodreads Navigator Amazon to Goodreads Navigator
ID lobdefpehipabbpcefccfknigdeolkbb
Oficiální URL https://chromewebstore.google.com/detail/amazon-to-goodreads-navig/lobdefpehipabbpcefccfknigdeolkbb
Popis Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked.
Velikost souboru 12.25 KB
Počet instalací 76
Aktuální Verze 1.0.0
Poslední Aktualizace 2022-05-12
Datum Vydání 2021-11-14
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://clydedsouza.net
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/ClydeDz/amazon-goodreads-navigator-chrome-extension
URL Stránky Nápovědy https://github.com/ClydeDz/amazon-goodreads-navigator-chrome-extension/issues/new/choose
Podporované Jazyky 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"
            ]
        }
    ]
}