Caret Browsing

Browse the text of web pages using arrow keys.

Caret Browsing क्या है?

Caret Browsing chrome-a11y-extensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browse the text of web pages using arrow keys."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Caret Browsing एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
}