Last Tab Back

Use the back key to close the tab if there are no pages to go back to. When it closes, go to the tab that created it.

Last Tab Backคืออะไร?

Last Tab Back เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oowildcat และคุณลักษณะหลักของมันคือ "Use the back key to close the tab if there are no pages to go back to. When it closes, go to the tab that created it."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Last Tab Back

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

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

                        This extension allows using the back key to go back to where you came from if it would normally have no pages to go back to.

To try it, open a new tab from a link, and then press the backspace key (note: this will not work within the web store; and if a form field is selected you need to tab out of it. It also obviously cannot work when Adobe Flash (or another plugin) is focused, as this captures key presses).

-- Tip: if you use a keyboard key or mouse button that does not appear to work in Last Tab Back, you can set up a custom key in the options page. Click on the box and try your key. If this still doesn't work, you might be able to set up a custom key in the keyboard or mouse software (possibly only for Chrome) and then try setting the custom key again in the options page. --

Pressing backspace / a custom key / clicking the LastTabBack button will go back as usual, until there are no such pages. Then it will close the tab and go back to the tab that opened this one.

This allows you to open new tabs and then go back where you came from without having to remember whether it was a new tab or a normal click to navigate - pressing backspace will take you back to the results either way.

You can also press Ctrl+Backspace to just go back to the tab that opened this one without closing the current tab, if you wish to leave this page to view later.

The extension also modifies the usual tab behavior to go back to the tab that opened this one when you close a tab.

--

Check out my other extension - search the web store for tabtiles.

--

Release history:

0.7.3 - Changed the custom key system to allow shift key modifiers  e.g. Shift + Chosen Key (for more flexibility with non-standard mouse button binding)
0.7.2 - Fixed a bug where clicking on a Google Search result was occasionally selecting the owner tab.
0.7.0 - Initial release                    

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

ชื่อ Last Tab Back Last Tab Back
ID oijipkokfkhgojikimbbcafnbppebnhe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/last-tab-back/oijipkokfkhgojikimbbcafnbppebnhe
คำอธิบาย Use the back key to close the tab if there are no pages to go back to. When it closes, go to the tab that created it.
ขนาดไฟล์ 91.92 KB
จำนวนการติดตั้ง 876
เวอร์ชันปัจจุบัน 0.7.3.2
อัปเดตครั้งล่าสุด 2020-04-16
วันที่เผยแพร่ 2020-04-13
คะแนน 2.89/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา oowildcat
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "lasttabback-default.js",
                "lasttabback.js",
                "utils.js"
            ],
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "version": "0.7.3.2",
    "minimum_chrome_version": "18",
    "name": "Last Tab Back",
    "background": {
        "scripts": [
            "lasttabback-default.js",
            "utils.js",
            "background.js"
        ]
    },
    "options_page": "options.html",
    "description": "Use the back key to close the tab if there are no pages to go back to. When it closes, go to the tab that created it.",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "browser_action": {
        "default_icon": "icons\/back.png",
        "default_title": "Last Tab Back - Click to go back, or close and go to the last tab if there are no more pages (Backspace works too)"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}