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.

Amazon to Goodreads Navigatorคืออะไร?

Amazon to Goodreads Navigator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://clydedsouza.net และคุณลักษณะหลักของมันคือ "Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon to Goodreads Navigator

ดาวน์โหลดไฟล์ส่วนขยาย Amazon to Goodreads Navigator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Amazon to Goodreads Navigator Amazon to Goodreads Navigator
ID lobdefpehipabbpcefccfknigdeolkbb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/amazon-to-goodreads-navig/lobdefpehipabbpcefccfknigdeolkbb
คำอธิบาย Adds a 1-click 'View in Goodreads' button on Amazon book pages to easily navigate from Amazon to Goodreads when clicked.
ขนาดไฟล์ 12.25 KB
จำนวนการติดตั้ง 76
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2022-05-12
วันที่เผยแพร่ 2021-11-14
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://clydedsouza.net
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ClydeDz/amazon-goodreads-navigator-chrome-extension
URL หน้าช่วยเหลือ https://github.com/ClydeDz/amazon-goodreads-navigator-chrome-extension/issues/new/choose
ภาษาที่รองรับ 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"
            ]
        }
    ]
}