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”。
扩展截图
下载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 |
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" ] } |