ePubby

Transform websites into ebooks to read anywhere.

ePubby क्या है?

ePubby marcusnaweb द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Transform websites into ebooks to read anywhere."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में ePubby एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        ePubby is a chrome extension that give you the power to store the web.

Just hold CTRL and move the mouse to the area containing the links you want to make an epub, then click, refine your selection and Convert!

It's a early version, so things may go wrong sometimes, but we're working to make it better everyday.

And please, respect the Terms of Service of the content you're trying to download, some content makers don't like to have their data scraped.                    

एक्सटेंशन की मूल जानकारी

नाम ePubby ePubby
ID mbejgngflcfhhbanmcbjkfpjlgiekghg
आधिकारिक URL https://chrome.google.com/webstore/detail/epubby/mbejgngflcfhhbanmcbjkfpjlgiekghg
विवरण Transform websites into ebooks to read anywhere.
फ़ाइल का आकार 211 KB
स्थापना संख्या 158
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2016-03-25
प्रकाशन तिथि 2016-03-25
रेटिंग 2.00/5 कुल 1 रेटिंग्स
डेवलपर marcusnaweb
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ePubby",
    "description": "Transform websites into ebooks to read anywhere.",
    "version": "0.0.1",
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "popup.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/bootstrap\/js\/modal.js",
                "bower_components\/react\/react.js",
                "bower_components\/react\/react-dom.js",
                "modal.js",
                "main.js"
            ],
            "css": [
                "main-style.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "https:\/\/ajax.googleapis.com\/"
    ]
}