Tab Number
Number tabs when the ctrl/alt/cmd button is held.
什麼是Tab Number?
Tab Number是由stugrammer開發的Chrome擴展程式,該擴展的主要功能是“Number tabs when the ctrl/alt/cmd button is held.”。
擴展截圖
下載Tab Number擴展crx文件
下載Tab Number擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A tool for those who uses ctrl/alt/cmd+number to jump between tabs. Display page number when you hold ctrl/alt/cmd key.
Version 0.2.0.1:
* Now the extension also works with pages having no favicon.
* Fixed a bug that the number is not shown on some pages, such as google group.
Version 0.1.0.2:
* Show tab numbers when alt is held in non-Mac system.
* Fixed a bug that tab numbers stay if page is closed with ctrl/cmd+w.
* Fixed a bug that tab numbers stay if control is switched to another window when ctrl/alt/cmd is held. 擴展基本資訊
| 名稱 | |
| ID | fijaenjgknobfdombbdchngpamggajpm |
| 官方網址 | https://chromewebstore.google.com/detail/tab-number/fijaenjgknobfdombbdchngpamggajpm |
| 簡介 | Number tabs when the ctrl/alt/cmd button is held. |
| 檔案大小 | 27.02 KB |
| 安裝次數 | 1,847 |
| 目前版本 | 0.2.0.1 |
| 更新時間 | 2013-12-03 |
| 上架時間 | 2013-12-03 |
| 評分 | 3.36/5 共 55 次評分 |
| 開發者 | stugrammer |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tab Number",
"description": "Number tabs when the ctrl\/alt\/cmd button is held.",
"version": "0.2.0.1",
"icons": {
"48": "icon-48.gif",
"128": "icon-128.gif"
},
"permissions": [
"tabs",
"*:\/\/*\/*",
"chrome:\/\/favicon\/"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"num_tab.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"favicon\/favicon-1.gif",
"favicon\/favicon-2.gif",
"favicon\/favicon-3.gif",
"favicon\/favicon-4.gif",
"favicon\/favicon-5.gif",
"favicon\/favicon-6.gif",
"favicon\/favicon-7.gif",
"favicon\/favicon-8.gif",
"favicon\/favicon-9.gif"
]
} | |