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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display the "View Kindle Edition" button if there's Kindle edition of books in Amazon's wish lists."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Find eBook Edition एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
    }
}