FavTabs

Opens a set of your favorite tabs.

Apa itu FavTabs?

FavTabs adalah ekstensi Chrome yang dikembangkan oleh Ian Hyatt, dan fitur utamanya adalah "Opens a set of your favorite tabs.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi FavTabs

Unduh file ekstensi FavTabs dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama FavTabs FavTabs
ID epmimoeohdhcbafcelmkkbabkkhojnee
URL Resmi https://chromewebstore.google.com/detail/favtabs/epmimoeohdhcbafcelmkkbabkkhojnee
Deskripsi Opens a set of your favorite tabs.
Ukuran File 17.64 KB
Jumlah Instalasi 41
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-10-27
Tanggal Publikasi 2017-01-16
Pengembang Ian Hyatt
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}