TabFusion
Combine all your Chrome tabs into a single window
TabFusionคืออะไร?
TabFusion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://heatherrivers.com และคุณลักษณะหลักของมันคือ "Combine all your Chrome tabs into a single window"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TabFusion
ดาวน์โหลดไฟล์ส่วนขยาย TabFusion ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
TabFusion lets you combine all your tabs into a single window in a highly configurable way.
* Choose your own keyboard shortcut or use the browser button
* Decide which types of windows to combine (popups, panels, apps)
* Exclude tabs based on url patterns ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | abompjhjgaeodboocegeokagjjiafobj |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tabfusion/abompjhjgaeodboocegeokagjjiafobj |
| คำอธิบาย | Combine all your Chrome tabs into a single window |
| ขนาดไฟล์ | 41.64 KB |
| จำนวนการติดตั้ง | 324 |
| เวอร์ชันปัจจุบัน | 1.0.1 |
| อัปเดตครั้งล่าสุด | 2015-03-22 |
| วันที่เผยแพร่ | 2015-03-22 |
| คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
| ผู้พัฒนา | https://heatherrivers.com |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/rivers/tabfusion |
| URL หน้าช่วยเหลือ | https://github.com/rivers/tabfusion/issues |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TabFusion",
"version": "1.0.1",
"manifest_version": 2,
"description": "Combine all your Chrome tabs into a single window",
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"browser_action": {
"default_icon": {
"19": "images\/icon-19.png",
"38": "images\/icon-38.png"
}
},
"background": {
"scripts": [
"fusion.js",
"listener.js"
],
"persistent": true
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"commands": {
"fuseTabs": {
"description": "Fuse all tabs",
"suggested_key": {
"windows": "Ctrl+Shift+T",
"mac": "Command+MacCtrl+T",
"chromeos": "Ctrl+Shift+T",
"linux": "Ctrl+Shift+T"
}
}
},
"author": "Heather Rivers",
"homepage_url": "https:\/\/github.com\/rivers\/tabfusion",
"minimum_chrome_version": "40",
"permissions": [
"tabs",
"windows",
"storage"
],
"offline_enabled": true
} | |