Reddit+

Reddit+

什么是Reddit+?

Reddit+是由@kennydude开发的Chrome扩展程序,该扩展的主要功能是“Reddit+”。

扩展截图

screenshot

下载Reddit+扩展crx文件

下载Reddit+扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Reddit+ Reddit+
ID djinnjnojhiahjgjahicofaakpmpdfhc
官方URL https://chrome.google.com/webstore/detail/reddit+/djinnjnojhiahjgjahicofaakpmpdfhc
简介 Reddit+
文件大小 75.52 KB
安装次数 13
当前版本 1.4
更新时间 2013-05-19
上架时间 2013-05-19
开发者 @kennydude
付费类型 free
扩展官网 https://github.com/kennydude/redditplus
支持的语言 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"
    }
}