Tab Uncloser
Restore your closed tabs easily
Qu'est-ce que Tab Uncloser ?
Tab Uncloser est une extension Chrome développée par Carl Kibler, et sa fonction principale est "Restore your closed tabs easily".
Télécharger le fichier CRX de l'extension Tab Uncloser
Téléchargez les fichiers d'extension Tab Uncloser 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
Easily re-open your closed tabs, from seconds ago to months ago. Closed tabs are shown in a dropdown for quick access to recent items, but you can search the full history. You can clear the tab history at any time with a single click as well to preserve privacy or clear out old data. Privacy: This extension sends zero tracking information to the author, ad sites, or anywhere else. All data is stored locally in your browser. -- This extension is a fork of Sexy Undo Close Tabs, a great extension the author has abandoned. In current form it is nearly identical to the old extension but with ads insertion removed.
Informations de Base sur l'Extension
Nom | Tab Uncloser |
ID | pdlkkmdnpkmgilgfenkjlmcamigelfmb |
URL Officiel | https://chromewebstore.google.com/detail/tab-uncloser/pdlkkmdnpkmgilgfenkjlmcamigelfmb |
Description | Restore your closed tabs easily |
Taille du Fichier | 41.07 KB |
Nombre d'Installations | 537 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2016-06-14 |
Date de Publication | 2016-06-13 |
Évaluation | 4.82/5 Total 11 Évaluations |
Développeur | Carl Kibler |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "background": { "page": "background.html" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Undo closed tabs" }, "content_scripts": [ { "all_frames": true, "js": [ "js\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "Restore your closed tabs easily", "icons": { "128": "icon-128.png", "48": "icon.png" }, "manifest_version": 2, "name": "Tab Uncloser", "options_page": "options.html", "permissions": [ "tabs", "unlimitedStorage", "chrome:\/\/favicon\/", "webNavigation", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0", "web_accessible_resources": [ "blank.html" ] } |