NiftySplit

Splits the screen and loads all links in the second window

Vad är NiftySplit?

NiftySplit är en Chrome-tillägg utvecklad av Bozozo, och dess huvudfunktion är "Splits the screen and loads all links in the second window".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner NiftySplit-förlängningens CRX-fil

Ladda ner NiftySplit-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn NiftySplit NiftySplit
ID bkmjnlfillpnkgmjnhgklpjjlpjnfeil
Officiell webbadress https://chromewebstore.google.com/detail/niftysplit/bkmjnlfillpnkgmjnhgklpjjlpjnfeil
Beskrivning Splits the screen and loads all links in the second window
Filstorlek 22.64 KB
Antal Installationer 13,081
Aktuell Version 0.8.0
Senast Uppdaterad 2013-12-15
Publiceringsdatum 2013-12-15
Betyg 3.71/5 Totalt 75 Betyg
Utvecklare Bozozo
Betalningssätt free
Stödda Språk 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"
    ]
}