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 |
| 官方網址 | 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
}
} | |