My Favorite Tabs

Pin usual tabs automatically.

What is My Favorite Tabs?

My Favorite Tabs is a Chrome extension developed by https://peixe.biz, and its main feature is "Pin usual tabs automatically.".

Extension Screenshots

screenshot

Download My Favorite Tabs Extension CRX File

Download My Favorite Tabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

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

Extension Basic Information

Name My Favorite Tabs My Favorite Tabs
ID joalkmjjcdankijhpckfnphochoccohn
Official URL https://chromewebstore.google.com/detail/my-favorite-tabs/joalkmjjcdankijhpckfnphochoccohn
Description Pin usual tabs automatically.
File Size 188 KB
Installation Count 54
Current Version 1.0.3
Last Updated 2013-02-11
Publish Date 2013-02-11
Rating 3.00/5 Total 4 Ratings
Developer https://peixe.biz
Payment Type free
Supported Languages 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"
    }
}