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
官方網址 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
    }
}