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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}