Tab Overflow
A tool to prevent you from opening too many tabs.
什麼是Tab Overflow?
Tab Overflow是由lexmart開發的Chrome擴展程式,該擴展的主要功能是“A tool to prevent you from opening too many tabs.”。
擴展截圖
下載Tab Overflow擴展crx文件
下載Tab Overflow擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Tab Overflow is a tool to prevent you from opening too many tabs in one window. It will forcibly close any tab you try to open beyond the allowed number (which you can specify). This is useful because it prevents you from overflowing your windows with too useless tabs, and trains you to use tabs as a limited resource. Github Page: https://github.com/lexmart/taboverflow Developed by Alexander Martin (www.github.com/lexmart) Graphics designed by Tigran Kasparian
擴展基本資訊
名稱 | Tab Overflow |
ID | bkjofbabnobnejgceoncjoimceohlogl |
官方網址 | https://chromewebstore.google.com/detail/tab-overflow/bkjofbabnobnejgceoncjoimceohlogl |
簡介 | A tool to prevent you from opening too many tabs. |
檔案大小 | 21.73 KB |
安裝次數 | 16 |
目前版本 | 0.1 |
更新時間 | 2015-10-22 |
上架時間 | 2015-10-22 |
評分 | 5.00/5 共 2 次評分 |
開發者 | lexmart |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Overflow", "description": "A tool to prevent you from opening too many tabs.", "version": "0.1", "options_page": "options.html", "background": { "persistent": false, "scripts": [ "tab-overflow.js" ] }, "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "web_accessible_resources": [ "options.html" ], "browser_action": { "default_title": "Tab Overflow", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |