NiftySplit
Splits the screen and loads all links in the second window
¿Qué es NiftySplit?
NiftySplit es una extensión de Chrome desarrollada por Bozozo, y su función principal es "Splits the screen and loads all links in the second window".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión NiftySplit
Descarga archivos de extensión NiftySplit en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | NiftySplit |
ID | bkmjnlfillpnkgmjnhgklpjjlpjnfeil |
URL Oficial | https://chromewebstore.google.com/detail/niftysplit/bkmjnlfillpnkgmjnhgklpjjlpjnfeil |
Descripción | Splits the screen and loads all links in the second window |
Tamaño del Archivo | 22.64 KB |
Cantidad de Instalaciones | 13,081 |
Versión Actual | 0.8.0 |
Última Actualización | 2013-12-15 |
Fecha de Publicación | 2013-12-15 |
Calificación | 3.71/5 Total de 75 Calificaciones |
Desarrollador | Bozozo |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |