Tap To Tab

Double-click (double tap) on a link to open it in a new Tab. Designed for tablets and laptop trackpads.

Tap To Tab क्या है?

Tap To Tab em_te द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Double-click (double tap) on a link to open it in a new Tab. Designed for tablets and laptop trackpads."।

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

screenshot
screenshot

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

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

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

                        Designed specifically for touch-screen tablets and laptops with trackpads (which don't have a right-click mouse button).

It works similar to the "open link in new tab" option in the popup menu when you right-click on a link, but this method is faster, because right-clicking is a slow process without an external mouse.

No longer will you have to hold down the button and wait for the popup menu, or perform complex mouse gestures to accomplish this seemingly common task.

Just double tap or double click on the link to open it in a new tab.

In the settings window you can change whether (1) tabs open at front; (2) tabs open next to current tab; (3) blacklist certain websites.                    

एक्सटेंशन की मूल जानकारी

नाम Tap To Tab Tap To Tab
ID enhajhmncplakageabmopgpodkdgcodd
आधिकारिक URL https://chromewebstore.google.com/detail/tap-to-tab/enhajhmncplakageabmopgpodkdgcodd
विवरण Double-click (double tap) on a link to open it in a new Tab. Designed for tablets and laptop trackpads.
फ़ाइल का आकार 30.01 KB
स्थापना संख्या 6,584
वर्तमान संस्करण 0.5.5
अंतिम अपडेट 2021-05-21
प्रकाशन तिथि 2020-05-09
रेटिंग 4.74/5 कुल 31 रेटिंग्स
डेवलपर em_te
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.github.com/em-te
गोपनीयता नीति पृष्ठ URL https://em-te.github.io/privacy
समर्थित भाषाएँ de,en,fr,nl,es,ru,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tap To Tab",
    "author": "Terry Yuen",
    "version": "0.5.5",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "20": "openinnewtab_20.png",
        "48": "openinnewtab_48.png",
        "96": "openinnewtab_96.png",
        "128": "openinnewtab_128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    }
}