Tab Uncloser
Restore your closed tabs easily
Tab Uncloser란 무엇입니까?
Tab Uncloser은(는) Carl Kibler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Restore your closed tabs easily"입니다.
Tab Uncloser 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |