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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://capybala.com และคุณลักษณะหลักของมันคือ "Display the "View Kindle Edition" button if there's Kindle edition of books in Amazon's wish lists."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Find eBook Edition

ดาวน์โหลดไฟล์ส่วนขยาย 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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
    }
}