Tab Uncloser
Restore your closed tabs easily
Tab Uncloserとは何ですか?
Tab UncloserはCarl Kiblerによって開発されたChromeの拡張機能で、その主な機能は「Restore your closed tabs easily」です。
Tab Uncloser拡張機能のCRXファイルをダウンロード
Tab Uncloser拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Tab Uncloser |
ID | pdlkkmdnpkmgilgfenkjlmcamigelfmb |
公式URL | https://chromewebstore.google.com/detail/tab-uncloser/pdlkkmdnpkmgilgfenkjlmcamigelfmb |
説明 | Restore your closed tabs easily |
ファイルサイズ | 41.07 KB |
インストール数 | 537 |
現在のバージョン | 1.0 |
最終更新日 | 2016-06-14 |
公開日 | 2016-06-13 |
評価 | 4.82/5 合計 11 レビュー |
開発者 | Carl Kibler |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" ] } |