Annotater

Annotate the web.

O que é Annotater?

Annotater é uma extensão do Chrome desenvolvida por Noah Buscher, e sua principal característica é "Annotate the web.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Annotater

Baixe arquivos de extensão Annotater no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Annotater Annotater
ID mebheldooadlkbhpfimifbgdngnlghoo
URL Oficial https://chrome.google.com/webstore/detail/annotater/mebheldooadlkbhpfimifbgdngnlghoo
Descrição Annotate the web.
Tamanho do Arquivo 89.64 KB
Contagem de Instalações 49
Versão Atual 0.0.1
Última Atualização 2014-11-20
Data de Publicação 2014-11-20
Classificação 1.00/5 Total de 1 Avaliações
Desenvolvedor Noah Buscher
Tipo de Pagamento free
Idiomas Suportados 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"
}