Recent Tabs

Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!

Recent Tabsคืออะไร?

Recent Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jasonsavard.com และคุณลักษณะหลักของมันคือ "Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Recent Tabs

ดาวน์โหลดไฟล์ส่วนขยาย Recent Tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Just like using Alt+Tab for Windows except now for your browser tabs. Use Ctrl+Tab or Ctrl+Q or Ctrl+`(~) or assign your own shortcut key for swapping back and forth between your last viewed tabs.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Recent Tabs Recent Tabs
ID ocllfmhjhfmogablefmibmjcodggknml
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/recent-tabs/ocllfmhjhfmogablefmibmjcodggknml
คำอธิบาย Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!
ขนาดไฟล์ 29.33 KB
จำนวนการติดตั้ง 26,175
เวอร์ชันปัจจุบัน 3.4
อัปเดตครั้งล่าสุด 2023-09-07
วันที่เผยแพร่ 2018-02-21
คะแนน 3.50/5 รวมทั้งหมด 331 คะแนน
ผู้พัฒนา https://jasonsavard.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://jasonsavard.com
URL หน้าช่วยเหลือ https://jasonsavard.com/wiki/Recent_Tabs
URL หน้านโยบายความเป็นส่วนตัว https://jasonsavard.com/wiki/Permissions_and_privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Recent Tabs",
    "version": "3.4",
    "description": "Cycle through your most recently used tabs (MRU) like Alt+Tab, but, with the shortcut keys Ctrl+Q or Ctrl+`(~) or assign your own!",
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage",
        "scripting",
        "alarms"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "toggleTabs": {
            "suggested_key": {
                "default": "Ctrl+Tab",
                "mac": "MacCtrl+Tab"
            },
            "description": "Toggle between the last 2 recent tabs"
        }
    },
    "manifest_version": 3
}