'Nuff Tabs
Limit the number of open tabs. Automatically close previous tabs.
什麼是'Nuff Tabs?
'Nuff Tabs是由https://www.squobble.com開發的Chrome擴展程式,該擴展的主要功能是“Limit the number of open tabs. Automatically close previous tabs.”。
擴展截圖
下載'Nuff Tabs擴展crx文件
下載'Nuff Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | 'Nuff Tabs |
ID | kemeihccgedidlokcbfhdekcfojpjjmp |
官方網址 | https://chromewebstore.google.com/detail/nuff-tabs/kemeihccgedidlokcbfhdekcfojpjjmp |
簡介 | Limit the number of open tabs. Automatically close previous tabs. |
檔案大小 | 11.11 KB |
安裝次數 | 975 |
目前版本 | 0.5 |
更新時間 | 2015-10-02 |
上架時間 | 2015-10-02 |
評分 | 4.44/5 共 18 次評分 |
開發者 | https://www.squobble.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/steven2358/NuffTabs |
說明頁面URL | https://github.com/steven2358/NuffTabs/issues |
支援的語言 | 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" } |