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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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