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. 擴展基本資訊
| 名稱 | |
| ID | pjpbfdjmmlnelgbkffopkgpggeeaildc |
| 官方網址 | 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"
]
}
]
} | |