ePubby

Transform websites into ebooks to read anywhere.

ePubbyคืออะไร?

ePubby เป็นส่วนขยายของ Chrome ที่พัฒนาโดย marcusnaweb และคุณลักษณะหลักของมันคือ "Transform websites into ebooks to read anywhere."

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย ePubby ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/"
    ]
}