Reddit+
Reddit+
What is Reddit+?
Reddit+ is a Chrome extension developed by @kennydude, and its main feature is "Reddit+".
Extension Screenshots
Download Reddit+ Extension CRX File
Download Reddit+ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Reddit+ is an extension which improves Reddit.
Currently it does
- Makes Reddit mobile-friendly (works on Firefox for Android, Chrome does not have extensions at the time of writing)
- Preview
- Preview of imgur etc
Code is available on GitHub -- https://github.com/kennydude/redditplus Extension Basic Information
| Name | |
| ID | djinnjnojhiahjgjahicofaakpmpdfhc |
| Official URL | https://chrome.google.com/webstore/detail/reddit+/djinnjnojhiahjgjahicofaakpmpdfhc |
| Description | Reddit+ |
| File Size | 75.52 KB |
| Installation Count | 13 |
| Current Version | 1.4 |
| Last Updated | 2013-05-19 |
| Publish Date | 2013-05-19 |
| Developer | @kennydude |
| Payment Type | free |
| Extension Website | https://github.com/kennydude/redditplus |
| Supported Languages | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Reddit+",
"version": "1.4",
"manifest_version": 2,
"description": "Reddit+",
"background": {
"persistent": false,
"scripts": [
"bg.js"
]
},
"permissions": [
"*:\/\/*.reddit.com\/*",
"*:\/\/*.imgur.com\/*",
"*:\/\/play.google.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.reddit.com\/*"
],
"js": [
"data\/zepto.min.js",
"chrome.js",
"data\/marked.js",
"data\/redditplus.js",
"data\/magpopup.js"
],
"css": [
"data\/redditplus.css",
"data\/magpopup.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"data\/button.png",
"data\/button-close.png",
"data\/loading.gif"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |