Show Tab List
Show all sites in the current page
Show Tab Listとは何ですか?
Show Tab Listはpinibalilihamelechによって開発されたChromeの拡張機能で、その主な機能は「Show all sites in the current page」です。
拡張機能のスクリーンショット
Show Tab List拡張機能のCRXファイルをダウンロード
Show Tab List拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Press Ctrl+Shift+Y to view a list of the sites used in the current page.
拡張機能の基本情報
名前 | Show Tab List |
ID | pjpbfdjmmlnelgbkffopkgpggeeaildc |
公式URL | https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc |
説明 | Show all sites in the current page |
ファイルサイズ | 8.67 KB |
インストール数 | 14,454 |
現在のバージョン | 0.1 |
最終更新日 | 2015-03-13 |
公開日 | 2015-03-13 |
評価 | 2.11/5 合計 9 レビュー |
開発者 | pinibalilihamelech |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Tab List", "description": "Show all sites in the current page", "version": "0.1", "manifest_version": 2, "icons": { "16": "resources\/images\/icon-16.png", "48": "resources\/images\/icon-48.png", "128": "resources\/images\/icon-128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ], "background": { "scripts": [ "resources\/js\/myBackground.js" ] }, "commands": { "toggle-tab-list": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Toggle tab list" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "resources\/js\/page.js" ] } ] } |