NiftySplit

Splits the screen and loads all links in the second window

NiftySplitとは何ですか?

NiftySplitはBozozoによって開発されたChromeの拡張機能で、その主な機能は「Splits the screen and loads all links in the second window」です。

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

screenshot
screenshot
screenshot
screenshot

NiftySplit拡張機能のCRXファイルをダウンロード

NiftySplit拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Use NiftySplit to split Chrome into two windows. Any link you click in the left window will load in the right window.

Is this useful? Yes!

You can now browse your favorite website and visit links without losing the main page. No need to use the Back button or open-and-close tabs all the time. This makes browsing websites like Reddit or Wikipedia a thing of pure joy.

Give it a try and let me know what you think!

*** now with multi-monitor support! ***

New in v0.8:
- multi-monitor support
- more awesome all-round

New in v0.7:
- Shift-click to open links in the left-hand window
- Window position can be customized and stored
- Support for taskbar-on-the-left layout
- Support for Incognito windows                    

拡張機能の基本情報

名前 NiftySplit NiftySplit
ID bkmjnlfillpnkgmjnhgklpjjlpjnfeil
公式URL https://chromewebstore.google.com/detail/niftysplit/bkmjnlfillpnkgmjnhgklpjjlpjnfeil
説明 Splits the screen and loads all links in the second window
ファイルサイズ 22.64 KB
インストール数 13,081
現在のバージョン 0.8.0
最終更新日 2013-12-15
公開日 2013-12-15
評価 3.71/5 合計 75 レビュー
開発者 Bozozo
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NiftySplit",
    "version": "0.8.0",
    "description": "Splits the screen and loads all links in the second window",
    "author": "Arno van den Brink",
    "background": {
        "persistent": true,
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "scripts\/contentscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "16": "images\/icon16.png"
    },
    "options_page": "pages\/options.html",
    "permissions": [
        "contextMenus"
    ]
}