Close Tab by Double Right Click

Close tab by double right clicking anywhere on the page. Inspired by "Rights To Close" legacy extension for Mozilla Firefox.

Close Tab by Double Right Click là gì?

Close Tab by Double Right Click là một tiện ích mở rộng Chrome được phát triển bởi https://webextensions.org, và tính năng chính của nó là "Close tab by double right clicking anywhere on the page. Inspired by "Rights To Close" legacy extension for Mozilla Firefox.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Close Tab by Double Right Click

Tải xuống các tệp mở rộng Close Tab by Double Right Click dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Double right click anywhere on the page to close the active tab.

Open source:
* https://github.com/webextensions/close-tab-by-double-right-click

Created by:
* Priyank Parashar

Notes:

* To enable this extension in "incognito" window mode or for "file:///" URLs, you will need to provide permissions for this by going to "chrome://extensions".

* Close Tab by Double Right Click implements an alternative approach for closing "chrome:///", "about:blank" and other special tabs. This is due to technical limitations of Chrome API. In these tabs, you would find a "Close Tab" context-menu entry which is shown when you right click anywhere on the page.

* To configure the extension further, please visit "chrome://extensions/" > "Details" (for this extension) > "Extension options"

* The idea of this extension is inspired by "Rights To Close" extension for Mozilla Firefox.

Connect to us:
* https://github.com/webextensions/close-tab-by-double-right-click
* https://twitter.com/webextensions
* Priyank Parashar - https://linkedin.com/in/ParasharPriyank/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Close Tab by Double Right Click Close Tab by Double Right Click
ID klngijkfgagcnegkffeckmkdpnpmbdpm
URL Chính Thức https://chromewebstore.google.com/detail/close-tab-by-double-right/klngijkfgagcnegkffeckmkdpnpmbdpm
Mô tả Close tab by double right clicking anywhere on the page. Inspired by "Rights To Close" legacy extension for Mozilla Firefox.
Kích Thước Tệp 19.36 KB
Số Lần Cài Đặt 6,463
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2021-10-11
Ngày Phát Hành 2017-11-17
Đánh Giá 2.88/5 Tổng số 64 Đánh Giá
Nhà Phát Triển https://webextensions.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.webextensions.org/
URL Trang Trợ Giúp https://github.com/webextensions/close-tab-by-double-right-click/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Tab by Double Right Click",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Close tab by double right clicking anywhere on the page. Inspired by \"Rights To Close\" legacy extension for Mozilla Firefox.",
    "homepage_url": "https:\/\/webextensions.org\/",
    "icons": {
        "16": "images\/double-click-16x16.png",
        "128": "images\/double-click-128x128.png"
    },
    "offline_enabled": true,
    "permissions": [
        "",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "page": "background.html"
    }
}