Open Tabs In Foreground

Open Tabs In Foreground

Open Tabs In Foreground क्या है?

Open Tabs In Foreground Sebastian Blask द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open Tabs In Foreground"।

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

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

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

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

                        Open Tabs In Foreground
=======================

Clicking a link using the left mouse button while having Ctrl pressed opens it
in a background tab by default. The same when using the middle mouse button.
This extension opens these tabs in the foreground instead. Tabs are only opened
in the background when having Shift pressed while clicking.

You won't need this extension in Firefox as it has a setting for this called
`When you open a link in a new tab, switch to it immediately`, but in Chrome
there is no way to achieve this otherwise.

Feedback
--------

You can report bugs or make feature requests on
https://github.com/sblask/webextension-open-tabs-in-foreground

Patches are welcome.                    

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

नाम Open Tabs In Foreground Open Tabs In Foreground
ID bmnanfhdjbcilhippcdfbhfpfoipgjgm
आधिकारिक URL https://chromewebstore.google.com/detail/open-tabs-in-foreground/bmnanfhdjbcilhippcdfbhfpfoipgjgm
विवरण Open Tabs In Foreground
फ़ाइल का आकार 41 KB
स्थापना संख्या 576
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2023-03-25
प्रकाशन तिथि 2017-10-10
रेटिंग 4.43/5 कुल 7 रेटिंग्स
डेवलपर Sebastian Blask
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/sblask/webextension-open-tabs-in-foreground
सहायता पृष्ठ URL https://github.com/sblask/webextension-open-tabs-in-foreground
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Open Tabs In Foreground",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-open-tabs-in-foreground",
    "icons": {
        "128": "icon-128x128.png",
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png"
    },
    "manifest_version": 2,
    "name": "Open Tabs In Foreground",
    "permissions": [
        ""
    ],
    "version": "1.0.5"
}