Tabs Counter
Count the number of tabs that are open
什麼是Tabs Counter?
Tabs Counter是由Bill Miller開發的Chrome擴展程式,該擴展的主要功能是“Count the number of tabs that are open”。
擴展截圖
下載Tabs Counter擴展crx文件
下載Tabs Counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
If your curious as to how many browser tabs are open, just select "How many tabs?" from the context menu and all will be revealed
擴展基本資訊
名稱 | |
ID | kgdaeidiojbdgmnjnpmklilaodjlkbjp |
官方網址 | https://chrome.google.com/webstore/detail/tabs-counter/kgdaeidiojbdgmnjnpmklilaodjlkbjp |
簡介 | Count the number of tabs that are open |
檔案大小 | 43.49 KB |
安裝次數 | 7,000 |
目前版本 | 0.1 |
更新時間 | 2014-07-09 |
上架時間 | 2014-07-09 |
評分 | 1.50/5 共 8 次評分 |
開發者 | Bill Miller |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tabs Counter", "description": "Count the number of tabs that are open", "version": "0.1", "manifest_version": 2, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.11.0.min.js", "jquery.bpopup.min.js", "script.js" ] } ] } |