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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Find eBook Edition 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Find eBook Edition 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
    }
}