'Nuff Tabs

Limit the number of open tabs. Automatically close previous tabs.

Vad är 'Nuff Tabs?

'Nuff Tabs är en Chrome-tillägg utvecklad av https://www.squobble.com, och dess huvudfunktion är "Limit the number of open tabs. Automatically close previous tabs.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner 'Nuff Tabs-förlängningens CRX-fil

Ladda ner 'Nuff Tabs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Limit the number of open tabs. Tabs are automatically closed when you surpass the limit, based on a rule you can specify.

Options allow to
1. set the tab limit
2. specify the discard rule
3. leave the pinned tabs untouched
4. show the current number of tabs in the icon

The following discard rules are included: Either close the oldest tab, the newest tab (avoids auto-closing tabs), the least recently used tab, the least frequently used tab, or a random tab.

Source code: https://github.com/steven2358/NuffTabs                    

Grundläggande Information om Tillägg

Namn 'Nuff Tabs 'Nuff Tabs
ID kemeihccgedidlokcbfhdekcfojpjjmp
Officiell webbadress https://chromewebstore.google.com/detail/nuff-tabs/kemeihccgedidlokcbfhdekcfojpjjmp
Beskrivning Limit the number of open tabs. Automatically close previous tabs.
Filstorlek 11.11 KB
Antal Installationer 975
Aktuell Version 0.5
Senast Uppdaterad 2015-10-02
Publiceringsdatum 2015-10-02
Betyg 4.44/5 Totalt 18 Betyg
Utvecklare https://www.squobble.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/steven2358/NuffTabs
Hjälpsida URL https://github.com/steven2358/NuffTabs/issues
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "'Nuff Tabs",
    "author": "Steven Van Vaerenbergh",
    "version": "0.5",
    "description": "Limit the number of open tabs. Automatically close previous tabs.",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "19": "i\/nufftabs19.png",
        "32": "i\/nufftabs32.png",
        "48": "i\/nufftabs48.png",
        "64": "i\/nufftabs64.png",
        "128": "i\/nufftabs128.png"
    },
    "browser_action": {
        "default_name": "'Nuff Tabs",
        "default_icon": "i\/nufftabs19.png",
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "nufftabs.js"
        ]
    },
    "options_page": "options.html"
}