Tab Cleanup - Close duplicate tabs
Add a button to remove duplicate tabs.
什麼是Tab Cleanup - Close duplicate tabs?
Tab Cleanup - Close duplicate tabs是由Koen Punt開發的Chrome擴展程式,該擴展的主要功能是“Add a button to remove duplicate tabs.”。
下載Tab Cleanup - Close duplicate tabs擴展crx文件
下載Tab Cleanup - Close duplicate tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
擴展基本資訊
| 名稱 | |
| ID | ehnjmengmmjddlifamlnboeldnegbbif |
| 官方網址 | https://chrome.google.com/webstore/detail/tab-cleanup-close-duplica/ehnjmengmmjddlifamlnboeldnegbbif |
| 簡介 | Add a button to remove duplicate tabs. |
| 檔案大小 | 15.99 KB |
| 安裝次數 | 138 |
| 目前版本 | 0.0.1 |
| 更新時間 | 2016-08-02 |
| 上架時間 | 2015-11-22 |
| 評分 | 2.33/5 共 3 次評分 |
| 開發者 | Koen Punt |
| 付費類型 | free |
| 擴展官網 | https://github.com/koenpunt/chrome-tab-cleanup |
| 說明頁面URL | https://github.com/koenpunt/chrome-tab-cleanup |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Cleanup - Close duplicate tabs",
"short_name": "Tab Cleanup",
"version": "0.0.1",
"description": "Add a button to remove duplicate tabs.",
"homepage_url": "https:\/\/github.com\/koenpunt",
"permissions": [
"tabs"
],
"browser_action": {
"default_title": "Close duplicate tabs"
},
"icons": {
"128": "icons\/icon128.png",
"16": "icons\/icon16.png",
"48": "icons\/icon48.png"
},
"background": {
"scripts": [
"background.js"
]
}
} | |