Tab Searching
Searching tabs in Sublime Text's way(goto anything) * "Command ." to launch panel.
Tab Searchingとは何ですか?
Tab Searchingはjiyinyiyongによって開発されたChromeの拡張機能で、その主な機能は「Searching tabs in Sublime Text's way(goto anything) * "Command ." to launch panel.」です。
拡張機能のスクリーンショット
Tab Searching拡張機能のCRXファイルをダウンロード
Tab Searching拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Searching tabs in Sublime Text's way(goto anything)
* "Command ." to launch panel. 拡張機能の基本情報
| 名前 | |
| ID | mghfpkfegmeanpcabcmiipiknkegjnkd |
| 公式URL | https://chrome.google.com/webstore/detail/tab-searching/mghfpkfegmeanpcabcmiipiknkegjnkd |
| 説明 | Searching tabs in Sublime Text's way(goto anything) * "Command ." to launch panel. |
| ファイルサイズ | 111 KB |
| インストール数 | 18 |
| 現在のバージョン | 0.3.4 |
| 最終更新日 | 2019-04-08 |
| 公開日 | 2019-04-08 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | jiyinyiyong |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/Termina/tab-searching |
| ヘルプページのURL | https://github.com/Termima/tab-searching/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tab Searching",
"version": "0.3.4",
"manifest_version": 2,
"icons": {
"128": "tab-searching.png"
},
"background": {
"scripts": [
"bg.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval' http:\/\/localhost:8080; object-src 'self'",
"permissions": [
"tabs",
"history",
"bookmarks",
"chrome:\/\/favicon\/",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"web_accessible_resources": [
"js\/*",
"css\/*",
"coffee\/*"
],
"browser_action": {
"default_icon": "tab-searching.png"
},
"commands": {
"launch": {
"suggested_key": {
"default": "Ctrl+Period",
"mac": "Command+Period"
},
"description": "Launch my searching tool"
}
}
} | |