FavTabs

Opens a set of your favorite tabs.

FavTabsとは何ですか?

FavTabsはIan Hyattによって開発されたChromeの拡張機能で、その主な機能は「Opens a set of your favorite tabs.」です。

拡張機能のスクリーンショット

screenshot

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.                    

拡張機能の基本情報

名前 FavTabs FavTabs
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
Eメール [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
    }
}