Tab Origin

Return to the page from which you opened this tab.

Tab Origin क्या है?

Tab Origin pelmers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Return to the page from which you opened this tab."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tab Origin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}