tabswitcher
TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…
tabswitcherとは何ですか?
tabswitcherはhttps://jhchabran.comによって開発されたChromeの拡張機能で、その主な機能は「TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension…」です。
拡張機能のスクリーンショット
tabswitcher拡張機能のCRXファイルをダウンロード
tabswitcher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
TL;DR Remember Textmate's Command-T ? It's the same for chrome.
Warning: shortcut has to be manually set in chrome's extension settings.
Suggestion: use alt-space. 拡張機能の基本情報
| 名前 | |
| ID | gkdkligmcadfbagoeggeohelmgalchcn |
| 公式URL | https://chromewebstore.google.com/detail/tabswitcher/gkdkligmcadfbagoeggeohelmgalchcn |
| 説明 | TL;DR Remember Textmate's Command-T ? It's the same for chrome. Warning: shortcut has to be manually set in chrome's extension… |
| ファイルサイズ | 375 KB |
| インストール数 | 22 |
| 現在のバージョン | 1.0.2 |
| 最終更新日 | 2015-09-29 |
| 公開日 | 2015-09-29 |
| 評価 | 4.50/5 合計 2 レビュー |
| 開発者 | https://jhchabran.com |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://jhchabran.com/blog/2011/12/17/build-a-chrome-extension-with-coffeescript/ |
| ヘルプページのURL | https://github.com/jhchabran/tabswitcher |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "tabswitcher",
"version": "1.0.2",
"browser_action": {
"default_title": "Show the popup",
"default_popup": "popup.html",
"default_icon": {
"19": "icon19.png",
"38": "icon38.png"
}
},
"permissions": [
"tabs"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"tabswitcher.js",
"content.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"tabswitcher.js",
"background.js"
],
"persistent": false
},
"manifest_version": 2
} | |