Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"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": {
"16": "images\/icon16.png",
"128": "images\/icon128.png"
},
"options_page": "pages\/options.html",
"permissions": [
"contextMenus"
]
}