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
Eメール [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"
    }
}