CaptionCrawler

Browser extension for the Caption Crawler System

Cos'è CaptionCrawler?

CaptionCrawler è un'estensione di Chrome sviluppata da Microsoft Corporation, e la sua funzione principale è "Browser extension for the Caption Crawler System".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione CaptionCrawler

Scarica i file di estensione CaptionCrawler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome CaptionCrawler CaptionCrawler
ID manbliigibmppkamoibgmkkjgmeoeldl
URL Ufficiale https://chromewebstore.google.com/detail/captioncrawler/manbliigibmppkamoibgmkkjgmeoeldl
Descrizione Browser extension for the Caption Crawler System
Dimensione del File 121 KB
Conteggio Installazioni 44
Versione Corrente 2.1.0
Ultimo Aggiornamento 2020-07-31
Data di Pubblicazione 2019-02-20
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Microsoft Corporation
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy http://aka.ms/privacy
Lingue Supportate 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
    }
}