Tabs
A simple, usable index of all your tabs.
Tabsとは何ですか?
Tabsはkenmooreによって開発されたChromeの拡張機能で、その主な機能は「A simple, usable index of all your tabs.」です。
拡張機能のスクリーンショット
Tabs拡張機能のCRXファイルをダウンロード
Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Don't let a ton of tabs slow you down. Press Alt+T to toggle a heads-up list of all your tabs.
拡張機能の基本情報
名前 | |
ID | cdbepibloojgbmnofbejfgglmdlifadj |
公式URL | https://chrome.google.com/webstore/detail/tabs/cdbepibloojgbmnofbejfgglmdlifadj |
説明 | A simple, usable index of all your tabs. |
ファイルサイズ | 127 KB |
インストール数 | 1,000 |
現在のバージョン | 0.34 |
最終更新日 | 2019-05-14 |
公開日 | 2019-05-14 |
評価 | 4.67/5 合計 30 レビュー |
開発者 | kenmoore |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tabs", "description": "A simple, usable index of all your tabs.", "version": "0.34", "author": "Ken Moore", "browser_action": { "default_icon": { "19": "images\/browser-action-19.png", "38": "images\/browser-action-38.png" } }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "tabs", "activeTab", "sessions", "storage" ], "web_accessible_resources": [ "css\/styles.css", "css\/cleanslate.css", "fonts\/*.woff2", "images\/*.svg", "images\/*.png" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+T" } }, "list-tabs": { "suggested_key": { "default": "Shift+Alt+T" }, "description": "Show a list of all open tabs" } }, "background": { "scripts": [ "js\/eventPage.js" ], "persistent": false } } |