Tablr
A powerful tab manager at your fingertips!
什么是Tablr?
Tablr是由TVFlash开发的Chrome扩展程序,该扩展的主要功能是“A powerful tab manager at your fingertips!”。
扩展截图
下载Tablr扩展crx文件
下载Tablr扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Tab organization done right.
Tablr is a quick and lightweight tab sorting and searching Chrome extension!
Features :
- Alphabetize tabs A-Z (Ctrl+Shift+A)
- Search tabs for keywords
- Adjustable settings
- Duplicate tab cleaning
Change log:
V 1.3.2
- Performance optimizations
V 1.3.1
- Fixed preferences for shortcut searches
V 1.3
- Added Settings menu
- Added search by URL
- Added toggle tab duplicate cleaning
V 1.2.1
- Added search on enter
V 1.2
- Added alpha sort shortcut
V 1.1
- Fixed icons
V 1.0
- Release 扩展基本信息
| 名称 | |
| ID | agdlmmkblbggohcchbofgamfjddamemo |
| 官方URL | https://chrome.google.com/webstore/detail/tablr/agdlmmkblbggohcchbofgamfjddamemo |
| 简介 | A powerful tab manager at your fingertips! |
| 文件大小 | 42.19 KB |
| 安装次数 | 47 |
| 当前版本 | 1.3.2 |
| 更新时间 | 2014-09-11 |
| 上架时间 | 2014-09-11 |
| 评分 | 5.00/5 共9次评分 |
| 开发者 | TVFlash |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tablr",
"description": "A powerful tab manager at your fingertips!",
"version": "1.3.2",
"options_page": "settings.html",
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"toggle-sort": {
"suggested_key": {
"default": "Ctrl+Shift+A",
"mac": "Command+Shift+A"
},
"description": "Sorts the tabs in A-Z"
}
},
"browser_action": {
"default_icon": "img\/icon.png",
"default_popup": "popup.html"
},
"icons": {
"128": "img\/hot.png",
"48": "img\/icon48.png",
"16": "img\/defaultIcon16.png"
},
"permissions": [
"webNavigation",
"webRequest",
"tabs",
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*"
]
} | |