CaptionCrawler

Browser extension for the Caption Crawler System

O que é CaptionCrawler?

CaptionCrawler é uma extensão do Chrome desenvolvida por Microsoft Corporation, e sua principal característica é "Browser extension for the Caption Crawler System".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão CaptionCrawler

Baixe arquivos de extensão CaptionCrawler 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

                        Caption Crawler is a browser extension that adds captions to images that do not have any. It is intended to be used by screen-reader users. The added captions are retrieved from other web pages containing the same image. When there is more than one available caption, they may be navigated via keyboard commands. This extension is a research project from the Ability Group at Microsoft Research.                    

Informações Básicas da Extensão

Nome CaptionCrawler CaptionCrawler
ID manbliigibmppkamoibgmkkjgmeoeldl
URL Oficial https://chromewebstore.google.com/detail/captioncrawler/manbliigibmppkamoibgmkkjgmeoeldl
Descrição Browser extension for the Caption Crawler System
Tamanho do Arquivo 121 KB
Contagem de Instalações 44
Versão Atual 2.1.0
Última Atualização 2020-07-31
Data de Publicação 2019-02-20
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Microsoft Corporation
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://aka.ms/privacy
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CaptionCrawler",
    "version": "2.1.0",
    "author": "Microsoft Corporation",
    "description": "Browser extension for the Caption Crawler System",
    "icons": {
        "16": "images\/Internal_HCIMSR_BigBlk.png",
        "32": "images\/Internal_HCIMSR_BigBlk.png",
        "48": "images\/Internal_HCIMSR_BigBlk.png",
        "128": "images\/Internal_HCIMSR_BigBlk.png"
    },
    "permissions": [
        "storage",
        "https:\/\/captioncrawler.azurewebsites.net\/",
        "https:\/\/captioncrawlertest.azurewebsites.net\/",
        "http:\/\/localhost\/"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "jquery.js"
    ],
    "page_action": {
        "default_popup": "options.html",
        "default_title": "Caption Crawler",
        "default_icon": {
            "16": "images\/Internal_HCIMSR_BigBlk.png",
            "20": "images\/Internal_HCIMSR_BigBlk.png",
            "32": "images\/Internal_HCIMSR_BigBlk.png",
            "40": "images\/Internal_HCIMSR_BigBlk.png",
            "48": "images\/Internal_HCIMSR_BigBlk.png",
            "128": "images\/Internal_HCIMSR_BigBlk.png"
        }
    },
    "background": {
        "page": "background.html",
        "persistent": false
    }
}