Tab Switcher
'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE *
Tab Switcherคืออะไร?
Tab Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย supa sympa และคุณลักษณะหลักของมันคือ "'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE *"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Switcher
ดาวน์โหลดไฟล์ส่วนขยาย Tab Switcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
I like using Chrome with keyboard shortcuts and I like using Chrome in presentation mode. I wasn't too happy with the built in options for flicking through tabs baked into the browser. So I built this extension to offer an OS like keyboard driven tab switcher, in the window of your Chrome browser. Press a key shortcut to navigate to your next tab, press a key shortcut to navigate to you previous tab. Great tool for full screen (presentation mode) browsing, no toolbars, tab navigation right in your web window!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | aefpepbidagmonnpdeokjljpmkbbhiee |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/tab-switcher/aefpepbidagmonnpdeokjljpmkbbhiee |
คำอธิบาย | 'In window', keyboard driven, tab switcher for simple, OS like, navigation! * PLEASE READ THE INSTRUCTIONS ON THE OPTIONS PAGE * |
ขนาดไฟล์ | 16.19 KB |
จำนวนการติดตั้ง | 147 |
เวอร์ชันปัจจุบัน | 0.1.9 |
อัปเดตครั้งล่าสุด | 2014-05-29 |
วันที่เผยแพร่ | 2014-05-29 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | supa sympa |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://bitbucket.org/barclaycodes/chrome-tab-switcher/wiki/Home |
URL หน้าช่วยเหลือ | https://bitbucket.org/barclaycodes/chrome-tab-switcher/wiki/Home |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.1.9", "manifest_version": 2, "description": "__MSG_appDescription__", "homepage_url": "https:\/\/bitbucket.org\/barclaycodes\/chrome-tab-switcher\/wiki\/Home", "offline_enabled": true, "options_page": "options.html", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "styles\/main.css" ], "js": [ "scripts\/client-scripts\/app.js" ], "run_at": "document_end", "all_frames": false } ], "commands": { "nextTab": { "suggested_key": { "windows": "Alt+N", "mac": "Alt+N", "chromeos": "Alt+N", "linux": "Alt+N" }, "description": "Next tab in window" }, "previousTab": { "suggested_key": { "windows": "Alt+P", "mac": "Alt+P", "chromeos": "Alt+P", "linux": "Alt+P" }, "description": "Previous tab in window" } }, "permissions": [ "windows", "tabs", "storage", "chrome:\/\/favicon\/", " |