Find eBook Edition
Display the "View Kindle Edition" button if there's Kindle edition of books in Amazon's wish lists.
什么是Find eBook Edition?
Find eBook Edition是由http://capybala.com开发的Chrome扩展程序,该扩展的主要功能是“Display the "View Kindle Edition" button if there's Kindle edition of books in Amazon's wish lists.”。
扩展截图
下载Find eBook Edition扩展crx文件
下载Find eBook Edition扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | jhhpocdmfelpmobcnmjfppdpnbepkono |
官方URL | https://chrome.google.com/webstore/detail/find-ebook-edition/jhhpocdmfelpmobcnmjfppdpnbepkono |
简介 | Display the "View Kindle Edition" button if there's Kindle edition of books in Amazon's wish lists. |
文件大小 | 28.39 KB |
安装次数 | 225 |
当前版本 | 1.3 |
更新时间 | 2014-12-02 |
上架时间 | 2014-12-02 |
评分 | 3.00/5 共2次评分 |
开发者 | http://capybala.com |
付费类型 | free |
帮助页面URL | https://twitter.com/orangain |
支持的语言 | 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 } } |