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 |
| 公式URL | 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"
]
} | |