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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}