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とは何ですか?

Close Tab by Double Right Clickはhttps://webextensions.orgによって開発されたChromeの拡張機能で、その主な機能は「Close tab by double right clicking anywhere on the page. Inspired by "Rights To Close" legacy extension for Mozilla Firefox.」です。

拡張機能のスクリーンショット

screenshot

Close Tab by Double Right Click拡張機能のCRXファイルをダウンロード

Close Tab by Double Right Click拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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/                    

拡張機能の基本情報

名前 Close Tab by Double Right Click Close Tab by Double Right Click
ID klngijkfgagcnegkffeckmkdpnpmbdpm
公式URL https://chromewebstore.google.com/detail/close-tab-by-double-right/klngijkfgagcnegkffeckmkdpnpmbdpm
説明 Close tab by double right clicking anywhere on the page. Inspired by "Rights To Close" legacy extension for Mozilla Firefox.
ファイルサイズ 19.36 KB
インストール数 6,463
現在のバージョン 1.1.0
最終更新日 2021-10-11
公開日 2017-11-17
評価 2.88/5 合計 64 レビュー
開発者 https://webextensions.org
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.webextensions.org/
ヘルプページのURL https://github.com/webextensions/close-tab-by-double-right-click/issues
対応言語 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"
    }
}