Tab Origin
Return to the page from which you opened this tab.
Qu'est-ce que Tab Origin ?
Tab Origin est une extension Chrome développée par pelmers, et sa fonction principale est "Return to the page from which you opened this tab.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tab Origin
Téléchargez les fichiers d'extension Tab Origin au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Tab Origin |
ID | koegbhcaimimhafaocefleldecfecjhn |
URL Officiel | https://chromewebstore.google.com/detail/tab-origin/koegbhcaimimhafaocefleldecfecjhn |
Description | Return to the page from which you opened this tab. |
Taille du Fichier | 9.33 KB |
Nombre d'Installations | 57 |
Version Actuelle | 1.0.5 |
Dernière Mise à Jour | 2024-01-15 |
Date de Publication | 2017-03-18 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | pelmers |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/pelmers/tab-origin |
URL de la Page d'Aide | https://github.com/pelmers/tab-origin/issues |
Langues Prises en Charge | 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" } } |