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