FavTabs

Opens a set of your favorite tabs.

FavTabs là gì?

FavTabs là một tiện ích mở rộng Chrome được phát triển bởi Ian Hyatt, và tính năng chính của nó là "Opens a set of your favorite tabs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng FavTabs

Tải xuống các tệp mở rộng FavTabs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FavTabs FavTabs
ID epmimoeohdhcbafcelmkkbabkkhojnee
URL Chính Thức https://chromewebstore.google.com/detail/favtabs/epmimoeohdhcbafcelmkkbabkkhojnee
Mô tả Opens a set of your favorite tabs.
Kích Thước Tệp 17.64 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-10-27
Ngày Phát Hành 2017-01-16
Nhà Phát Triển Ian Hyatt
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}