CaptionCrawler

Browser extension for the Caption Crawler System

CaptionCrawlerとは何ですか?

CaptionCrawlerはMicrosoft Corporationによって開発されたChromeの拡張機能で、その主な機能は「Browser extension for the Caption Crawler System」です。

拡張機能のスクリーンショット

screenshot

CaptionCrawler拡張機能のCRXファイルをダウンロード

CaptionCrawler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
    }
}