Close Tab
Add a tab close action to the page context menu
什麼是Close Tab?
Close Tab是由Hansifer開發的Chrome擴展程式,該擴展的主要功能是“Add a tab close action to the page context menu”。
擴展截圖
下載Close Tab擴展crx文件
下載Close Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Close Tab lets you close a web page in a snap with a right mouse click and a key press. This is often quicker than moving the mouse cursor up to the tab's close icon or taking your hand off the mouse to use a keyboard shortcut that requires both hands. The shortcut key that closes the tab is customizable.
擴展基本資訊
名稱 | Close Tab |
ID | lnchemdcmhoccciihokpdkkekmnejfhj |
官方網址 | https://chromewebstore.google.com/detail/close-tab/lnchemdcmhoccciihokpdkkekmnejfhj |
簡介 | Add a tab close action to the page context menu |
檔案大小 | 25.84 KB |
安裝次數 | 1,786 |
目前版本 | 1.8.0 |
更新時間 | 2023-11-28 |
上架時間 | 2020-05-09 |
評分 | 4.73/5 共 22 次評分 |
開發者 | Hansifer |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Tab", "version": "1.8.0", "minimum_chrome_version": "91", "description": "Add a tab close action to the page context menu", "default_locale": "en", "manifest_version": 3, "options_ui": { "page": "options_inline.html", "open_in_tab": false }, "icons": { "16": "img\/logo16.png", "48": "img\/logo48.png", "128": "img\/logo128.png" }, "action": { "default_icon": { "19": "img\/logo19.png", "38": "img\/logo38.png" }, "default_title": "Close selected tab" }, "background": { "service_worker": "bg.js", "type": "module" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "contextMenus", "storage" ] } |