CaptionCrawler

Browser extension for the Caption Crawler System

CaptionCrawler란 무엇입니까?

CaptionCrawler은(는) Microsoft Corporation에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser extension for the Caption Crawler System"입니다.

확장 프로그램 스크린샷

screenshot

CaptionCrawler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 CaptionCrawler CaptionCrawler
ID manbliigibmppkamoibgmkkjgmeoeldl
공식 URL https://chromewebstore.google.com/detail/captioncrawler/manbliigibmppkamoibgmkkjgmeoeldl
설명 Browser extension for the Caption Crawler System
파일 크기 121 KB
설치 횟수 44
현재 버전 2.1.0
최근 업데이트 2020-07-31
출시 날짜 2019-02-20
평점 5.00/5 총 1 개의 평점
개발자 Microsoft Corporation
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL http://aka.ms/privacy
지원되는 언어 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
    }
}