CaptionCrawler

Browser extension for the Caption Crawler System

Wat is CaptionCrawler?

CaptionCrawler is een Chrome-extensie ontwikkeld door Microsoft Corporation, en de belangrijkste functie is "Browser extension for the Caption Crawler System".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CaptionCrawler

Download CaptionCrawler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam CaptionCrawler CaptionCrawler
ID manbliigibmppkamoibgmkkjgmeoeldl
Officiële URL https://chromewebstore.google.com/detail/captioncrawler/manbliigibmppkamoibgmkkjgmeoeldl
Beschrijving Browser extension for the Caption Crawler System
Bestandsgrootte 121 KB
Aantal Installaties 44
Huidige Versie 2.1.0
Laatst Bijgewerkt 2020-07-31
Publicatiedatum 2019-02-20
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Microsoft Corporation
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina http://aka.ms/privacy
Ondersteunde Talen 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
    }
}