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はhttps://clydedsouza.netによって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" ] } ] } |