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
官方URL 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"
    }
}