Tab Keeper

Automatically closes inactive tabs and makes it easy to get them back.

什麼是Tab Keeper?

Tab Keeper是由Jayaram Jinaga開發的Chrome擴展程式,該擴展的主要功能是“Automatically closes inactive tabs and makes it easy to get them back.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Tab Keeper擴展crx文件

下載Tab Keeper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        ## Tab Keeper 1.4
--------------------------------------------------------------

Too many tabs? Do you have a tab addiction?

Tab Keeper automatically closes inactive tabs after designated time. But don't worry, auto-closed tabs are stored safe and sound, and makes it easy to get them back. It will save your computer. 

Similar to AutoClose Tabs, Auto Close Tabs for Firefox. Icons from Fat Cow / famfam fam.

If you find the extension useful, then please consider a contribution to help me continue to develop and maintain it, using Paypal button in the options tab.

Help:
http://jayaramjinaga.blogspot.in/2015/03/chrome-extension-tab-wrangler-bookmarks_8.html

Support:
http://jayaramjinaga.blogspot.in/2015/03/chrome-extension-tab-wrangler-bookmarks_8.html

## Features:
--------------------------------------------------------------

*The Corral*: Stores tabs which have been auto-closed so you can re-open as required.

*Bookmarks*: Can save to Other bookmarks folder in chrome. A new folder called Tab Keeper Bookmarks is created under it. Again under tha folder, recent items are stored in Current folder, and older items are archived based on max tabs setting, to History folder within different timestamp folders, each containing previous sets of archived tabs.

*Sync*: Chrome sync saves settings and data between computers.

*Highly Configurable*: Pick how long a tab should be considered ready to close, how many tabs should be open at a minimum, how many tabs to store, and whether to store in bookmarks. 

*Exclude list*: Provide the urls or domain names of the sites you never want auto-closed.

*Tab Lock*: Pick open tabs to "lock".  Locked tabs will not be auto-closed.

*Smart*: Doesn't auto close pinned tabs, doesn't close all your tabs, just enough to make your browser usable.

Notice: Doesn't save the state of the page. It's just like history, when the page is closed, anything you were doing with it is gone.  I recommend the lazarus extension if this is a problem for you.  If you re-open it, it will be a fresh page.  

Please stop giving bad reviews for impossible features or intentional functionality please.  File an issue on github if you want it changed or fork and upload a patch.  Thanks!

## Usage / Installation
--------------------------------------------------------------

* Install the extension
* Click on the icon next to the URL bar.
* Tab Corral
  * Stores tabs which have been auto-closed.
* Tab Lock
  * Selectively lock tabs which you want to stay open
* Options
  * White-list certain URLs to never be closed.
  * Set the # of minutes to wait before closing an inactive tab.
  * Set the ideal # of tabs to have in your browser.

## Todo:
--------------------------------------------------------------

* Pause the auto-close behavior if the browser has been idle

## Release Notes:
--------------------------------------------------------------
1.4 Release Date: Sunday, March 15, 2015

Bug: Duplicate Tab Coral issue fixed.

1.0 Release Date: Sunday, March 08, 2015

Enhancement: Option to save closed tabs in bookmarks.
Bug: White-list regular expression is working now.

Terms and Conditions
--------------------------------------------------------------

By using this software you agree to the following Terms and Conditions:

The MIT License (MIT)
--------------------------------------------------------------

Copyright (c) 2015 Jayaram Jinaga

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

## Creds:
--------------------------------------------------------------

Original extension and idea by [jacktasia](https://github.com/jacktasia/tabwrangler) in 2010. 
Twitter: https://twitter.com/#!/jacktasia
Site: http://jackangers.com/

Rewritten by [JacobSingh](https://github.com/jacobSingh) in 2012.
Twitter: http://twitter.com/#!/jacobsingh
Site: http://jacobsingh.name

Rewritten by Jayaram Jinaga in 2015.                    

擴展基本資訊

名稱 Tab Keeper Tab Keeper
ID opphlpkpklmjbglpifmecilchaknobgn
官方網址 https://chromewebstore.google.com/detail/tab-keeper/opphlpkpklmjbglpifmecilchaknobgn
簡介 Automatically closes inactive tabs and makes it easy to get them back.
檔案大小 175 KB
安裝次數 1,651
目前版本 1.4
更新時間 2015-03-14
上架時間 2015-03-14
評分 4.16/5 共 32 次評分
開發者 Jayaram Jinaga
付費類型 free
擴展官網 http://jayaramjinaga.blogspot.in/2015/03/chrome-extension-tab-wrangler-bookmarks_8.html
說明頁面URL http://jayaramjinaga.blogspot.in/2015/03/chrome-extension-tab-wrangler-bookmarks_8.html
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "manifest_version": 2,
    "name": "Tab Keeper",
    "options_page": "popup.html",
    "version": "1.4",
    "description": "Automatically closes inactive tabs and makes it easy to get them back.",
    "minimum_chrome_version": "28",
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png",
        "16": "img\/icon16.png"
    },
    "browser_action": {
        "default_title": "Tab Keeper",
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "img\/icon48.png"
    ],
    "permissions": [
        "tabs",
        "bookmarks",
        "notifications",
        "storage",
        "contextMenus"
    ]
}