EverTabs

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

EverTabs क्या है?

EverTabs Eric Anderson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Current tab is always moved to the far left such that tabs are sorted by recency by default"।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में EverTabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
    }
}