CLUT: Cycle Last Used Tabs

Cycle through last used Chrome tabs using keyboard shortcut.

CLUT: Cycle Last Used Tabsとは何ですか?

CLUT: Cycle Last Used TabsはHarshay Buradkarによって開発されたChromeの拡張機能で、その主な機能は「Cycle through last used Chrome tabs using keyboard shortcut.」です。

拡張機能のスクリーンショット

CLUT: Cycle Last Used Tabs拡張機能のCRXファイルをダウンロード

CLUT: Cycle Last Used Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension tries to mimic the ALT+TAB behavior from Windows(or Command+TAB in Mac) to allow to switch between open tabs in a Most Recently Used fashion. 
It remembers the order in which you switched tabs (made a tab active) and it updates its records so that you can switch to the recently used ones quickly.   

Note: Sometimes after updating the extension the keyboard shortcut settings get reset. Hence you might want to set the desired keyboard shortcuts again in the keyboard shortcut settings in the Chrome Extensions page.
Alternatively, navigate to chrome://extensions/shortcuts from your address bar to change shortcuts.


Please rate and comment.

The project is made open source in GitHub: 
https://github.com/harshayburadkar/clut-chrome-extension.git

Default Keys*: 
ALT+W: Quick switch
ALT + S: Normal switch 
ALT + Shift + S: Normal switch (in opposite direction)
*Keys can be changed in keyboard shortcut settings on the Chrome extensions page.



=Quick switch=: 
Use for rapid switching to last tab (by pressing once) or to the second to last used tab(by pressing rapidly twice) and so on.

=Normal switch=: 
Use when you want to look for a tab recently used but when you would want to go in a slower pace (needing to glimpse for a bit to see if it is the page you need)

Most other extensions meant to accomplish the same thing don’t work well since there are some limitations/difficulties in the Chrome API. This extension uses some basic algorithms and timers of intervals between key presses to get over these problems. That is the reason there is separate keys for quick and slower switches with different timer settings.

Features:
* Can cycle through ALL open tabs from all Chrome windows in a most recently used order
* Extension DOES NOT need access to any of your visited website's data
* Can work through tabs across different Chrome windows
* Snappy and fast switches


FAQ:

- Why are there two sets of shortcuts one for quick switch and one for a slower switch. Isn’t it possible to simplify like ALT+TAB behavior ?
A: There are some restrictions in Chrome API which makes it difficult to implement this feature in the most natural way. The intention was to make this extension work as close to Alt+Tab in Windows (or Cmd+Tab for Mac). Unfortunately due to these limitations though, this extension relies on time intervals in between your key presses. That is the reason there is a concept of quick switch (faster timer) and a normal switch (slower timer).

- Where can I change the shortcut key for switching tabs ?
A: To change shortcut, go to the Extensions pane in your Chrome browser. Press the menu icon 
 and find the Keyboard Shortcuts option in the list. You can change keyboard shortcuts of your installed extensions and apps here.  

Alternatively, you can access and change extension keyboard shortcuts by going to this special address from your browser address bar.
chrome://extensions/shortcuts

Note: Few shortcuts may be not allowed to be set by Chrome if Chrome itself uses that shortcut or the shortcut is needed for system level operations.


Feel free to post feedback, comments and suggestions.                    

拡張機能の基本情報

名前 CLUT: Cycle Last Used Tabs CLUT: Cycle Last Used Tabs
ID cobieddmkhhnbeldhncnfcgcaccmehgn
公式URL https://chromewebstore.google.com/detail/clut-cycle-last-used-tabs/cobieddmkhhnbeldhncnfcgcaccmehgn
説明 Cycle through last used Chrome tabs using keyboard shortcut.
ファイルサイズ 21.82 KB
インストール数 20,000
現在のバージョン 1.7
最終更新日 2022-06-26
公開日 2016-06-25
評価 4.62/5 合計 213 レビュー
開発者 Harshay Buradkar
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CLUT: Cycle Last Used Tabs",
    "description": "Cycle through last used Chrome tabs using keyboard shortcut.",
    "version": "1.7",
    "short_name": "CLUT",
    "permissions": [
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "alt_switch_fast": {
            "suggested_key": {
                "default": "Alt+W",
                "mac": "Alt+W"
            },
            "description": "Quick switch - Use to switch quickly among last 2 to 4 tabs. (Suggested: Alt+W)"
        },
        "alt_switch_slow_backward": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Normal switch backward (Suggested: Alt+S) "
        },
        "alt_switch_slow_forward": {
            "suggested_key": {
                "default": "Alt+Shift+S",
                "mac": "Alt+Shift+S"
            },
            "description": "Normal switch forward (Suggested: Alt+Shift+S)"
        }
    },
    "browser_action": {
        "default_icon": "icon16.png"
    }
}