Webotate (Beta)

Annotate webpages however you like.

Webotate (Beta)คืออะไร?

Webotate (Beta) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Samarth Wahal และคุณลักษณะหลักของมันคือ "Annotate webpages however you like."

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Webotate (Beta)

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

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

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