Find eBook Edition
Display the "View Kindle Edition" button if there's Kindle edition of books in Amazon's wish lists.
Wat is Find eBook Edition?
Find eBook Edition is een Chrome-extensie ontwikkeld door http://capybala.com, en de belangrijkste functie is "Display the "View Kindle Edition" button if there's Kindle edition of books in Amazon's wish lists.".
Extensie Screenshots
Download het CRX-bestand van de extensie Find eBook Edition
Download Find eBook Edition-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Is there any book added to Amazon's Wish List but not bought? The extension makes it easy to find Kindle edition of paper books in your Wish List. Let's enjoy reading e-books on Kindle. Available at the following stores. - Amazon.com - Amazon.co.uk - Amazon.co.jp - Amazon.fr - Amazon.ca - Amazon.cn - Amazon.de Source code is available at https://github.com/capybala/find-ebook-edition
Basisinformatie over de Extensie
Naam | |
ID | jhhpocdmfelpmobcnmjfppdpnbepkono |
Officiële URL | https://chrome.google.com/webstore/detail/find-ebook-edition/jhhpocdmfelpmobcnmjfppdpnbepkono |
Beschrijving | Display the "View Kindle Edition" button if there's Kindle edition of books in Amazon's wish lists. |
Bestandsgrootte | 28.39 KB |
Aantal Installaties | 225 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2014-12-02 |
Publicatiedatum | 2014-12-02 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | http://capybala.com |
Betalingswijze | free |
Help Pagina-URL | https://twitter.com/orangain |
Ondersteunde Talen | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Find eBook Edition", "version": "1.3", "manifest_version": 2, "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "page_action": { "default_title": "Find eBook Edition", "default_icon": "img\/icon_19.png", "default_popup": "popup.html" }, "permissions": [ "http:\/\/prefer-ebooks.capybala.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/www.amazon.com\/*wishlist\/*", "*:\/\/www.amazon.co.jp\/*wishlist\/*", "*:\/\/www.amazon.co.uk\/*wishlist\/*", "*:\/\/www.amazon.ca\/*wishlist\/*", "*:\/\/www.amazon.cn\/*wishlist\/*", "*:\/\/www.amazon.de\/*wishlist\/*", "*:\/\/www.amazon.fr\/*wishlist\/*" ], "js": [ "js\/content_script.js" ], "css": [ "css\/content_script.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "img\/loading_icon.gif" ], "background": { "scripts": [ "js\/local_cache.js", "js\/event_page.js" ], "persistent": false } } |