Annotater

Annotate the web.

Что такое Annotater?

Annotater - это расширение Chrome, разработанное Noah Buscher, и его основная функция - "Annotate the web.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Annotater

Скачайте файлы расширений Annotater в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Annotater Annotater
ID mebheldooadlkbhpfimifbgdngnlghoo
Официальный URL https://chrome.google.com/webstore/detail/annotater/mebheldooadlkbhpfimifbgdngnlghoo
Описание Annotate the web.
Размер файла 89.64 KB
Количество установок 49
Текущая Версия 0.0.1
Последнее Обновление 2014-11-20
Дата публикации 2014-11-20
Рейтинг 1.00/5 Всего 1 оценок
Разработчик Noah Buscher
Тип оплаты free
Поддерживаемые языки 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"
}