FavTabs

Opens a set of your favorite tabs.

Cos'è FavTabs?

FavTabs è un'estensione di Chrome sviluppata da Ian Hyatt, e la sua funzione principale è "Opens a set of your favorite tabs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione FavTabs

Scarica i file di estensione FavTabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome FavTabs FavTabs
ID epmimoeohdhcbafcelmkkbabkkhojnee
URL Ufficiale https://chromewebstore.google.com/detail/favtabs/epmimoeohdhcbafcelmkkbabkkhojnee
Descrizione Opens a set of your favorite tabs.
Dimensione del File 17.64 KB
Conteggio Installazioni 41
Versione Corrente 1.0
Ultimo Aggiornamento 2020-10-27
Data di Pubblicazione 2017-01-16
Sviluppatore Ian Hyatt
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
    }
}