Annotater

Annotate the web.

Annotater là gì?

Annotater là một tiện ích mở rộng Chrome được phát triển bởi Noah Buscher, và tính năng chính của nó là "Annotate the web.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Annotater

Tải xuống các tệp mở rộng Annotater dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Annotater allows you to comment the web. Just open a page in your browser, hit the Annotater button, and comment away! You can set a custom nickname and view other people's comments in real-time. Think of it as a public chat room for any website.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Annotater Annotater
ID mebheldooadlkbhpfimifbgdngnlghoo
URL Chính Thức https://chrome.google.com/webstore/detail/annotater/mebheldooadlkbhpfimifbgdngnlghoo
Mô tả Annotate the web.
Kích Thước Tệp 89.64 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2014-11-20
Ngày Phát Hành 2014-11-20
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Noah Buscher
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Annotater",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Annotate the web.",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/firebase.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.firebase.com https:\/\/*.firebaseio.com https:\/\/*.firebaseio-demo.com; object-src 'self'",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Annotater",
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}