Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
Pop out tabs to new windowคืออะไร?
Pop out tabs to new window เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ivan Novikov และคุณลักษณะหลักของมันคือ "Click the extension's toolbar button to pop out selected tab(s) to a new window."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pop out tabs to new window
ดาวน์โหลดไฟล์ส่วนขยาย Pop out tabs to new window ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Default shortcut: Alt+P. Usually you have just the current tab selected, but Chrome also has built-in functionality to select multiple tabs: — To select specific tabs in a window, click tab handles while holding down Cmd (Mac) or Ctrl (Windows) key. — To select a range of tabs, click tab handles while holding down the Shift key. Source code: https://github.com/ivan7237d/pop-out-tabs
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
คำอธิบาย | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
ขนาดไฟล์ | 3.38 KB |
จำนวนการติดตั้ง | 248 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2018-03-14 |
วันที่เผยแพร่ | 2018-03-14 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Ivan Novikov |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://twitter.com/ivan7237d |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pop out tabs to new window", "version": "1.1", "description": "Click the extension's toolbar button to pop out selected tab(s) to a new window.", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "offline_enabled": true, "browser_action": { "default_title": "Pop out tabs to new window" }, "commands": { "popout_action": { "suggested_key": { "default": "Alt+P" }, "description": "Pop out tabs to new window" } } } |