Advanced Tabs
More power for your tabs
Advanced Tabsとは何ですか?
Advanced TabsはSnackbitsによって開発されたChromeの拡張機能で、その主な機能は「More power for your tabs」です。
拡張機能のスクリーンショット
Advanced Tabs拡張機能のCRXファイルをダウンロード
Advanced Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Advanced Tabs gives your browser some more power for your tabs. Current feature set: - Keyboard shortcut to create new tab next to current tab - Keyboard shortcut to duplicate current tab - Keyboard shortcut to move selected tab(s) to a new window If you have a feature request, feel free to contact me (rate the extension and write a comment). This is just a prototype with minimal functionality.
拡張機能の基本情報
名前 | |
ID | elamcamcmfljngapamiephddjoggbgnk |
公式URL | https://chromewebstore.google.com/detail/advanced-tabs/elamcamcmfljngapamiephddjoggbgnk |
説明 | More power for your tabs |
ファイルサイズ | 12.87 KB |
インストール数 | 129 |
現在のバージョン | 1.1.0 |
最終更新日 | 2023-01-17 |
公開日 | 2018-09-24 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Snackbits |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "author": "WebIT-Service", "name": "__MSG_extName__", "version": "1.1.0", "default_locale": "en", "description": "__MSG_extDescription__", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": "images\/icon-32.png", "default_popup": "options.html", "default_title": "__MSG_actionTitle__" }, "commands": { "new-tab-next-to-current": { "suggested_key": { "default": "Alt+T" }, "description": "__MSG_newTabHotkey__" }, "duplicate-tab": { "suggested_key": { "default": "Alt+D" }, "description": "__MSG_duplicateTabHotkey__" }, "move-tab-to-new-window": { "suggested_key": { "default": "Alt+Shift+T" }, "description": "__MSG_moveTabToNewWindowHotkey__" } }, "options_ui": { "open_in_tab": false, "page": "options.html" } } |