My Favorite Tabs

Pin usual tabs automatically.

Cos'è My Favorite Tabs?

My Favorite Tabs è un'estensione di Chrome sviluppata da https://peixe.biz, e la sua funzione principale è "Pin usual tabs automatically.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione My Favorite Tabs

Scarica i file di estensione My Favorite Tabs 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

                        ”いつものタブよ、ピン留めして勢揃いしろ!"をワンクリックで実現します。
”おまえもいつものタブに加われ”もワンクリックです。

つまり、どゆことかというと:
- アイコンをクリックすると、登録されたURLの中で表示されてないものは自動的に新規タブとして表示されます。
- 表示されたタブは左端に固定されます。
- アイコンクリック後、"add current page"を押すと、現在選択されているタブのURLが登録されます。
- 手動でURLを入力することもできます。
- 登録したURLは次回起動時に自動で読み込まれ、固定されます。                    

Informazioni di Base sull'Estensione

Nome My Favorite Tabs My Favorite Tabs
ID joalkmjjcdankijhpckfnphochoccohn
URL Ufficiale https://chromewebstore.google.com/detail/my-favorite-tabs/joalkmjjcdankijhpckfnphochoccohn
Descrizione Pin usual tabs automatically.
Dimensione del File 188 KB
Conteggio Installazioni 54
Versione Corrente 1.0.3
Ultimo Aggiornamento 2013-02-11
Data di Pubblicazione 2013-02-11
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore https://peixe.biz
Tipo di Pagamento free
Lingue Supportate ja
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My Favorite Tabs",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Pin usual tabs automatically.",
    "browser_action": {
        "default_icon": "images\/book.png",
        "default_popup": "config.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "key.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "48": "images\/book.png",
        "128": "images\/book128.png"
    },
    "background": {
        "page": "background.html"
    }
}