Webotate (Beta)

Annotate webpages however you like.

Webotate (Beta)란 무엇입니까?

Webotate (Beta)은(는) Samarth Wahal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Annotate webpages however you like."입니다.

확장 프로그램 스크린샷

Webotate (Beta) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}