Most Recent Used Tab Stack

Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.

Most Recent Used Tab Stackคืออะไร?

Most Recent Used Tab Stack เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brandon และคุณลักษณะหลักของมันคือ "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs."

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Most Recent Used Tab Stack

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

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

                        This extension moves your most recently used (MRU) tab to the front or back. Allowing Ctrl+tab to work in most recently used order. 

This is an update to https://goo.gl/F0pGhZ to support the new api. Also works with pinned tabs.

1.5 - Simpler Code, fix to sometimes send the tab to the back.
1.4 - Fix to support chrome bug while tab.query is broken.
1.3 - Right to left support. 
1.2 - Removed more permissions. Now doesn't need anything additional to function.
1.1 - Working with multiple windows now. Removed some unneeded permissions.                    

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

ชื่อ Most Recent Used Tab Stack Most Recent Used Tab Stack
ID kbedhikfgjjlhibaoafccbkeeppnhage
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/most-recent-used-tab-stac/kbedhikfgjjlhibaoafccbkeeppnhage
คำอธิบาย Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.
ขนาดไฟล์ 15.78 KB
จำนวนการติดตั้ง 252
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2021-06-04
วันที่เผยแพร่ 2018-02-07
คะแนน 4.92/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา brandon
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Most Recent Used Tab Stack",
    "version": "1.5",
    "description": "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.",
    "short_name": "MRU Tab Stack",
    "background": {
        "persistant": false,
        "scripts": [
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Same as Ctrl+Tab but won't sort until you let go."
        }
    }
}