FavTabs
Opens a set of your favorite tabs.
什么是FavTabs?
FavTabs是由Ian Hyatt开发的Chrome扩展程序,该扩展的主要功能是“Opens a set of your favorite tabs.”。
扩展截图
下载FavTabs扩展crx文件
下载FavTabs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extensions provides a button in Chrome that opens a set of default (favorite) tabs. You can specify the URLs for the tabs to open in the extension options as well as which tabs (if any) you want pinned. 扩展基本信息
| 名称 | |
| ID | epmimoeohdhcbafcelmkkbabkkhojnee |
| 官方URL | https://chromewebstore.google.com/detail/favtabs/epmimoeohdhcbafcelmkkbabkkhojnee |
| 简介 | Opens a set of your favorite tabs. |
| 文件大小 | 17.64 KB |
| 安装次数 | 41 |
| 当前版本 | 1.0 |
| 更新时间 | 2020-10-27 |
| 上架时间 | 2017-01-16 |
| 开发者 | Ian Hyatt |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "FavTabs",
"description": "Opens a set of your favorite tabs.",
"version": "1.0",
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"activeTab",
"storage"
],
"browser_action": {
"default_title": "FavTabs"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |