CaptionCrawler

Browser extension for the Caption Crawler System

CaptionCrawler là gì?

CaptionCrawler là một tiện ích mở rộng Chrome được phát triển bởi Microsoft Corporation, và tính năng chính của nó là "Browser extension for the Caption Crawler System".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CaptionCrawler

Tải xuống các tệp mở rộng CaptionCrawler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CaptionCrawler CaptionCrawler
ID manbliigibmppkamoibgmkkjgmeoeldl
URL Chính Thức https://chromewebstore.google.com/detail/captioncrawler/manbliigibmppkamoibgmkkjgmeoeldl
Mô tả Browser extension for the Caption Crawler System
Kích Thước Tệp 121 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2020-07-31
Ngày Phát Hành 2019-02-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Microsoft Corporation
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật http://aka.ms/privacy
Ngôn Ngữ Được Hỗ Trợ 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
    }
}