WebBook

Tool for Highlighting Web Pages, saving them in the Cloud and Retrieving them whenever you come to the Web Page

WebBook क्या है?

WebBook Pranav Gupta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tool for Highlighting Web Pages, saving them in the Cloud and Retrieving them whenever you come to the Web Page"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Using this extension, whenever you are on an English Wikipedia Page in your browser, you can highlight text. You can also save these highlights to the WebBook Server by signing in to your Google Account. The next time you come to the same Web Page and are signed in to your Google Account, you will see your highlights exactly as you had saved them the last time. See Instructions on the Top right corner on how to use the extension.                    

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

नाम WebBook WebBook
ID olmgodbcgcglmipboikffokfbcnonabf
आधिकारिक URL https://chrome.google.com/webstore/detail/webbook/olmgodbcgcglmipboikffokfbcnonabf
विवरण Tool for Highlighting Web Pages, saving them in the Cloud and Retrieving them whenever you come to the Web Page
फ़ाइल का आकार 121 KB
स्थापना संख्या 11
वर्तमान संस्करण 0.0.0.3
अंतिम अपडेट 2014-12-26
प्रकाशन तिथि 2014-12-26
डेवलपर Pranav Gupta
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://webbook.cloudapp.net/WebBook/rest/webbook/welcome
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WebBook",
    "version": "0.0.0.3",
    "manifest_version": 2,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx0Qjx6\/EpfTYzyc+XU+414e1dawvX+gV1e5N9LmOglnXvVcqa7B5gJcqD3iBdanMsCu6C6dVCoQXqhyxeyGUcapZBzckTYy3yr1MRhw42SH8CqIrHyDfX24dSHOgm5r7cK44s8KcQmewpnljI1k61nc9g5to1\/hLLeaBH9FkgV9mqtwnDsG9Qj6FUfGsqXpr+HZPxKm+B5lFlli8c8Nmjx1hjL28noZJc+gxQbVRifSHq\/T+g36MKLemoVpxQh+vuMWxIScEEhQ447ZWzQX25yHFTV0DOk0+ptHR8R2H7kjdbyhbyXoK0y036D207qjfh1rH4nXMMD4fvzavCAVkjQIDAQAB",
    "description": "Tool for Highlighting Web Pages, saving them in the Cloud and Retrieving them whenever you come to the Web Page",
    "minimum_chrome_version": "29",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_16.png",
        "default_popup": "popup.html",
        "default_title": "WebBook Sign In And Instructions"
    },
    "background": {
        "scripts": [
            "jquery.js",
            "jquery.min.js",
            "background.util.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "matches": [
                "http:\/\/en.wikipedia.org\/*",
                "https:\/\/en.wikipedia.org\/*"
            ],
            "js": [
                "jquery.js",
                "jquery.min.js",
                "WebBook.js",
                "WebBookUtils.js",
                "PageInterface.js",
                "Highlighter.js",
                "Highlights.js",
                "PageLoader.js",
                "EventHandlers.js",
                "WebBookIOUtil.js",
                "master_content.js"
            ]
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "tabs",
        "identity"
    ]
}