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. 擴展基本資訊
| 名稱 | |
| ID | pdlkkmdnpkmgilgfenkjlmcamigelfmb |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
} | |