Close Other Tabs

Allows you to close other tabs with a toolbar button, an item on the right-click menu or by pressing Alt+Shift+W.

Close Other Tabs क्या है?

Close Other Tabs David Webb द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to close other tabs with a toolbar button, an item on the right-click menu or by pressing Alt+Shift+W."।

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

screenshot
screenshot

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

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

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

                        To replace the item removed from the right-click menu on tabs this extension does three things:

1. It adds a button to the toolbar you can click on to close other tabs.
2. It adds a Close Other Tabs item to the standard right-click context menu.
3. It adds the Alt+Shift+W keyboard shortcut to close other tabs.

It doesn't track your browsing, send your personal data to any remote servers or rewrite any of the links on the pages you visit.  It adds the toolbar button, the context menu item, the keyboard shortcut and nothing else.  The source is available on GitHub if you want to check this for yourself.

(The extension adds a toolbar button and puts an item to the right click context menu you get when clicking on the page rather restoring the menu item that was removed because Extensions cannot add items to the tab menu.)                    

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

नाम Close Other Tabs Close Other Tabs
ID hlgfnmhokcceeipoadecmcgfijbnjpjm
आधिकारिक URL https://chromewebstore.google.com/detail/close-other-tabs/hlgfnmhokcceeipoadecmcgfijbnjpjm
विवरण Allows you to close other tabs with a toolbar button, an item on the right-click menu or by pressing Alt+Shift+W.
फ़ाइल का आकार 46.45 KB
स्थापना संख्या 808
वर्तमान संस्करण 1.2
अंतिम अपडेट 2019-11-21
प्रकाशन तिथि 2019-11-20
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर David Webb
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/davweb/close-other-tabs
सहायता पृष्ठ URL https://github.com/davweb/close-other-tabs/blob/master/README.md
गोपनीयता नीति पृष्ठ URL https://davweb.github.io/close-other-tabs/privacy_policy.html
समर्थित भाषाएँ id,ms,de,en-GB,en-US,fil,fr,sw,nl,no,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",
    "manifest_version": 2,
    "default_locale": "en_US",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2",
    "icons": {
        "16": "images\/close16.png",
        "48": "images\/close48.png",
        "128": "images\/close128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/close16.png",
            "24": "images\/close24.png",
            "32": "images\/close32.png"
        },
        "default_title": "__MSG_extensionName__"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+W"
            }
        }
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}