Click Close Tab

A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…

Click Close Tab क्या है?

Click Close Tab Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…"।

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

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

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

                        A simple extension that will close tabs by clicking left & right mouse buttons at the same time.

Note: Works well on Windows, but is a bit screwy on OSX. In OSX, it only works if left clicking, holding left, then right clicking. This will not work if you've right clicked first and the context menu is open in OSX. If you right click and the context menu opens, left click elsewhere to close it, then left click, hold, right click to close the tab.                    

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

नाम Click Close Tab Click Close Tab
ID mldgnecagdcghceibglikakhcmfcglkf
आधिकारिक URL https://chromewebstore.google.com/detail/click-close-tab/mldgnecagdcghceibglikakhcmfcglkf
विवरण A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…
फ़ाइल का आकार 3.68 KB
स्थापना संख्या 45
वर्तमान संस्करण 1.2
अंतिम अपडेट 2017-11-15
प्रकाशन तिथि 2017-11-15
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click Close Tab",
    "manifest_version": 2,
    "version": "1.2",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "click-close-tab.js"
            ],
            "run_at": "document_end"
        }
    ]
}