Tab Origin

Return to the page from which you opened this tab.

什麼是Tab Origin?

Tab Origin是由pelmers開發的Chrome擴展程式,該擴展的主要功能是“Return to the page from which you opened this tab.”。

擴展截圖

screenshot
screenshot

下載Tab Origin擴展crx文件

下載Tab Origin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Shortcut to return to the page from which you opened the current tab.

Motivation: you have a list of search results. You opened the first 5 in new tabs and closed the results list. Now you read the 5 top results, but they do not answer your question so you want to go back to the search page.

Without this extension, you would need to search your history or spam undo close tab. 

This extension conveniently solves the problem by taking you straight back to the origin page, re-opening it if necessary.

You can even use it recursively on tabs opened by tab origin; the extension tracks the history.

I suggest the shortcut is cmd/ctrl-shift-u, set from the bottom of Extensions page.
When origin information is unavailable for a tab a "N/A" badge is shown.

Port of my Tab Origin add-on from Firefox.                    

擴展基本資訊

名稱 Tab Origin Tab Origin
ID koegbhcaimimhafaocefleldecfecjhn
官方網址 https://chromewebstore.google.com/detail/tab-origin/koegbhcaimimhafaocefleldecfecjhn
簡介 Return to the page from which you opened this tab.
檔案大小 9.33 KB
安裝次數 57
目前版本 1.0.5
更新時間 2024-01-15
上架時間 2017-03-18
評分 5.00/5 共 3 次評分
開發者 pelmers
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/pelmers/tab-origin
說明頁面URL https://github.com/pelmers/tab-origin/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Origin",
    "description": "Return to the page from which you opened this tab.",
    "author": "Peter Elmers",
    "version": "1.0.5",
    "icons": {
        "48": "drawing.png",
        "128": "drawing128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "action": {
        "default_icon": "drawing.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        }
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}