NiftySplit
Splits the screen and loads all links in the second window
Was ist NiftySplit?
NiftySplit ist eine Chrome-Erweiterung, die von Bozozo entwickelt wurde, und ihr Hauptmerkmal ist "Splits the screen and loads all links in the second window".
Erweiterungsscreenshots
NiftySplit-Erweiterungs-CRX-Datei herunterladen
Laden Sie NiftySplit-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | NiftySplit |
ID | bkmjnlfillpnkgmjnhgklpjjlpjnfeil |
Offizielle URL | https://chromewebstore.google.com/detail/niftysplit/bkmjnlfillpnkgmjnhgklpjjlpjnfeil |
Beschreibung | Splits the screen and loads all links in the second window |
Dateigröße | 22.64 KB |
Installationsanzahl | 13,081 |
Aktuelle Version | 0.8.0 |
Letztes Update | 2013-12-15 |
Veröffentlichungsdatum | 2013-12-15 |
Bewertung | 3.71/5 Insgesamt 75 Bewertungen |
Entwickler | Bozozo |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |