Tab Uncloser
Restore your closed tabs easily
Tab Uncloserคืออะไร?
Tab Uncloser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Carl Kibler และคุณลักษณะหลักของมันคือ "Restore your closed tabs easily"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Uncloser
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } |