Webotate (Beta)

Annotate webpages however you like.

Webotate (Beta) क्या है?

Webotate (Beta) Samarth Wahal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Annotate webpages however you like."।

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

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

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

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

                        You can annotate books, so why not webpages? This chrome extension was built with the purpose of annotating and making the web your canvas. Whether you create meaningful notes or draw funky mustaches on your friends' pictures is completely up to you.

Features:
    - Annotate with your mouse, and possibly, stylus.
    - Save/Load annotations from local storage
    - Clear/Erase whole or parts of annotations
    - Multiple colors
    - Ctrl+Click to select content on page while in Annotate mode                    

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

नाम Webotate (Beta) Webotate (Beta)
ID mndfmdpnaddjhajnclbbajfcceojpjbf
आधिकारिक URL https://chrome.google.com/webstore/detail/webotate-beta/mndfmdpnaddjhajnclbbajfcceojpjbf
विवरण Annotate webpages however you like.
फ़ाइल का आकार 74.18 KB
स्थापना संख्या 210
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2015-03-24
प्रकाशन तिथि 2015-03-24
रेटिंग 4.50/5 कुल 2 रेटिंग्स
डेवलपर Samarth Wahal
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/LordZamy/Webotate
सहायता पृष्ठ URL https://github.com/LordZamy/Webotate
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Webotate (Beta)",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Annotate webpages however you like.",
    "homepage_url": "http:\/\/google.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Webotate",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "contentSettings",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "src\/inject\/jquery-2.1.3.min.js",
                "src\/inject\/store.min.js"
            ]
        }
    ]
}