Caret Browsing

Browse the text of web pages using arrow keys.

Caret Browsingとは何ですか?

Caret Browsingはchrome-a11y-extensionsによって開発されたChromeの拡張機能で、その主な機能は「Browse the text of web pages using arrow keys.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Press F7 to turn on Caret Browsing. Press it again to turn it off.

Use arrow keys to move throughout the document.

Click anywhere to move the cursor to that location.

Press Shift + arrows to select text.

Hold down Option to move by word.

When you reach a link or control, it is automatically focused. Press Enter to click a link or button.

When a focused control (like a text box or a list box) is capturing arrow keys, press Esc followed by the left or right arrow to continue Caret Browsing.

Alternatively, press Tab to move to the next focusable control.                    

拡張機能の基本情報

名前 Caret Browsing Caret Browsing
ID fklpgenihifpccgiifchnihilipmbffg
公式URL https://chromewebstore.google.com/detail/caret-browsing/fklpgenihifpccgiifchnihilipmbffg
説明 Browse the text of web pages using arrow keys.
ファイルサイズ 195 KB
インストール数 59,231
現在のバージョン 1.0.2
最終更新日 2019-10-09
公開日 2019-10-09
評価 4.22/5 合計 1312 レビュー
開発者 chrome-a11y-extensions
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://policies.google.com/privacy?hl=en
対応言語 id,ms,de,en,en-GB,fil,fr,sw,nl,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_CARET_BROWSING_APPNAME__",
    "version": "1.0.2",
    "description": "__MSG_CARET_BROWSING_APPDESC__",
    "manifest_version": 2,
    "permissions": [
        "",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "caret_19.png",
        "default_title": "__MSG_CARET_BROWSING_APPNAME__"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "caretbrowsing.css"
            ],
            "js": [
                "axs_testing.js",
                "traverse_util.js",
                "caretbrowsing.js"
            ]
        }
    ],
    "default_locale": "en",
    "icons": {
        "16": "caret_16.png",
        "48": "caret_48.png",
        "128": "caret_128.png"
    },
    "options_page": "options.html"
}