Goodlink
A direct link to Goodreads from Amazon.
Goodlink란 무엇입니까?
Goodlink은(는) Ratik Sharma에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A direct link to Goodreads from Amazon."입니다.
확장 프로그램 스크린샷
Goodlink 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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!
확장 프로그램 기본 정보
이름 | |
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": [ "*" ] } |