tabswitcher
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
tabswitcherคืออะไร?
tabswitcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jhchabran.com และคุณลักษณะหลักของมันคือ "TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย tabswitcher
ดาวน์โหลดไฟล์ส่วนขยาย tabswitcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension settings. Suggestion: use alt-space.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gkdkligmcadfbagoeggeohelmgalchcn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
คำอธิบาย | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
ขนาดไฟล์ | 375 KB |
จำนวนการติดตั้ง | 22 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2015-09-29 |
วันที่เผยแพร่ | 2015-09-29 |
คะแนน | 4.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | https://jhchabran.com |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
URL หน้าช่วยเหลือ | https://github.com/jhchabran/tabswitcher |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "tabswitcher", "version": "1.0.2", "browser_action": { "default_title": "Show the popup", "default_popup": "popup.html", "default_icon": { "19": "icon19.png", "38": "icon38.png" } }, "permissions": [ "tabs" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "tabswitcher.js", "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "tabswitcher.js", "background.js" ], "persistent": false }, "manifest_version": 2 } |