EverTabs

Current tab is always moved to the far left such that tabs are sorted by recency by default

EverTabsとは何ですか?

EverTabsはEric Andersonによって開発されたChromeの拡張機能で、その主な機能は「Current tab is always moved to the far left such that tabs are sorted by recency by default」です。

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

EverTabs拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension does two things:
 - Every time a tab is viewed for more than a second (or a user specified time), it moves to the far left. 
 - If you have more than 10 (or a user specified amount of) tabs, the one furthest on the right is closed.

This is meant to fit the same mental model as windows/apps on mobile and desktop (via tab selection) and allow you not to think about tabs at tall.

The result is that tabs currently being worked with naturally and conveniently cluster together (on the left) and you are one intuitive step (cntl+tab) to get to last tab used. Tabs you aren't using end up on the right and eventually get closed.

Pinned tabs still remain the furthest left (this moves the current tabs to the left of normal tabs and the right of pinned tabs). Future releases hopefully support a user specified max.                    

拡張機能の基本情報

名前 EverTabs EverTabs
ID bphkmkgfjlmhmhgjcmlicimeelpgpjck
公式URL https://chromewebstore.google.com/detail/evertabs/bphkmkgfjlmhmhgjcmlicimeelpgpjck
説明 Current tab is always moved to the far left such that tabs are sorted by recency by default
ファイルサイズ 6.51 KB
インストール数 12
現在のバージョン 0.8
最終更新日 2019-08-01
公開日 2019-08-01
開発者 Eric Anderson
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EverTabs",
    "version": "0.8",
    "description": "Current tab is always moved to the far left such that tabs are sorted by recency by default",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "128": "icon.png"
        },
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "popup.html",
        "open_in_tab": false
    }
}