Tab Deduper
An extension that allows the user to deduplicate tabs.
Tab Deduperとは何ですか?
Tab DeduperはTrevor Siemensによって開発されたChromeの拡張機能で、その主な機能は「An extension that allows the user to deduplicate tabs.」です。
拡張機能のスクリーンショット
Tab Deduper拡張機能のCRXファイルをダウンロード
Tab Deduper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Tab Deduper is an extension to find and remove duplicate Chrome tabs.
Unlike other currently available extensions which dedup tabs, Tab Deduper differentiates itself in the following ways:
- Duplicate tabs are not automatically closed. A list of duplicated tabs are presented, allowing for precise control over which tab gets closed.
- Use of text OR regular expression based settings to control how tabs are compared, including use of title, fragment, and doing sed-like regex replacements on URLs. This last feature is very useful if you use other extensions which modify your tab URLs. 拡張機能の基本情報
| 名前 | |
| ID | fpcohiaaphpfoneofdlabjnpipbnkplj |
| 公式URL | https://chromewebstore.google.com/detail/tab-deduper/fpcohiaaphpfoneofdlabjnpipbnkplj |
| 説明 | An extension that allows the user to deduplicate tabs. |
| ファイルサイズ | 26.73 KB |
| インストール数 | 1,259 |
| 現在のバージョン | 1.2.1 |
| 最終更新日 | 2024-01-14 |
| 公開日 | 2018-07-18 |
| 評価 | 4.67/5 合計 9 レビュー |
| 開発者 | Trevor Siemens |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/tsiemens/ChromeTabDeduper |
| ヘルプページのURL | https://github.com/tsiemens/ChromeTabDeduper/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Tab Deduper",
"description": "An extension that allows the user to deduplicate tabs.",
"version": "1.2.1",
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"action": {
"default_icon": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_popup": "popup.html"
},
"background": {
"service_worker": "eventPage.js"
},
"options_page": "options.html",
"permissions": [
"tabs",
"activeTab",
"storage",
"contextMenus"
]
} | |