Goodlink

A direct link to Goodreads from Amazon.

Goodlinkคืออะไร?

Goodlink เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ratik Sharma และคุณลักษณะหลักของมันคือ "A direct link to Goodreads from Amazon."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Goodlink

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

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

                        Amazon is the go-to place people use to link to books on the internet. It makes sense that we do this since it makes it buying books easy. But, what if you don't want to buy the book right away and instead want to save it to your reading list on Goodreads?

Well, the way you would usually do that is by opening Goodreads, searching for the book, and then adding it to your lists. That is fairly long process. Goodlink wants to make this process faster.

With Goodlink, all you need to do is press the Goodlink button when on a book's page on Amazon and you will be taken to the book's Goodreads page instantly. You can then proceed and save the book to your lists as usual!                    

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

ชื่อ Goodlink Goodlink
ID gfbllmckkfbnjjiglmffnloiihjccljh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/gfbllmckkfbnjjiglmffnloiihjccljh
คำอธิบาย A direct link to Goodreads from Amazon.
ขนาดไฟล์ 19.42 KB
จำนวนการติดตั้ง 14
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2020-11-30
วันที่เผยแพร่ 2019-10-06
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Ratik Sharma
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Goodlink",
    "version": "1.1.0",
    "description": "A direct link to Goodreads from Amazon.",
    "browser_action": {
        "default_icon": {
            "16": "icons\/grayed.png",
            "48": "icons\/[email protected]",
            "128": "icons\/[email protected]"
        }
    },
    "icons": {
        "16": "icons\/grayed.png",
        "48": "icons\/[email protected]",
        "128": "icons\/[email protected]"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.in\/*",
                "*:\/\/*.amazon.cn\/*",
                "*:\/\/*.amazon.co.jp\/*",
                "*:\/\/*.amazon.com.tr\/*",
                "*:\/\/*.amazon.ae\/*",
                "*:\/\/*.amazon.fr\/*",
                "*:\/\/*.amazon.de\/*",
                "*:\/\/*.amazon.it\/*",
                "*:\/\/*.amazon.nl\/*",
                "*:\/\/*.amazon.es\/*",
                "*:\/\/*.amazon.co.uk\/*",
                "*:\/\/*.amazon.ca\/*",
                "*:\/\/*.amazon.com.mx\/*",
                "*:\/\/*.amazon.com\/*",
                "*:\/\/*.amazon.com.au\/*",
                "*:\/\/*.amazon.com.br\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*.goodreads.com\/*"
    ],
    "web_accessible_resources": [
        "*"
    ]
}