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": "Reddit Next (For Old Reddit)",
"description": "Go to the next root comment on a Reddit thread.",
"version": "1.0",
"browser_action": [],
"permissions": [
"activeTab",
"https:\/\/www.reddit.com\/*",
"https:\/\/old.reddit.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.reddit.com\/r\/*\/comments\/*",
"https:\/\/old.reddit.com\/r\/*\/comments\/*"
],
"css": [
"style.css"
],
"js": [
"jquery.js",
"visible.js",
"content.js"
]
}
],
"web_accessible_resources": [
"arrow_up.png",
"arrow_down.png"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"commands": {
"go_up": {
"description": "Go Up"
},
"go_down": {
"description": "Go Down"
},
"go_up2": {
"description": "Go Up And Expand Image"
},
"go_down2": {
"description": "Go Down And Expand Image"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
}
}