Reddit Votify

Bring back reddit upvotes and downvotes to the front page of any subreddit!

什么是Reddit Votify?

Reddit Votify是由kevinvincent开发的Chrome扩展程序,该扩展的主要功能是“Bring back reddit upvotes and downvotes to the front page of any subreddit!”。

扩展截图

screenshot

下载Reddit Votify扩展crx文件

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

扩展使用说明

                        Reddit Votify is a chrome extension that works to bring back upvote and downvote counts on the front page of every subreddit!

How does it work?
We essentially crowdsource the '% like this' and total score for all submissions and store them elsewhere after computing the upvotes and downvotes using an algorithm (thanks to /u/bxtk for the code samples)
We then display these on a subreddit's front page.

What will it do?
Here are some features that are in the pipeline:
 * Live updating of upvotes and downvotes (no page reloads - watch live as comments and submissions are voted on)                    

扩展基本信息

名称 Reddit Votify Reddit Votify
ID bbpkagenmpdclgfmaapobkjoglngfdca
官方URL https://chromewebstore.google.com/detail/reddit-votify/bbpkagenmpdclgfmaapobkjoglngfdca
简介 Bring back reddit upvotes and downvotes to the front page of any subreddit!
文件大小 408 KB
安装次数 160
当前版本 3.1.0
更新时间 2014-06-23
上架时间 2014-06-22
评分 2.60/5 共5次评分
开发者 kevinvincent
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Votify",
    "version": "3.1.0",
    "manifest_version": 2,
    "description": "Bring back reddit upvotes and downvotes to the front page of any subreddit!",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "http:\/\/reddit.com\/*",
        "http:\/\/www.reddit.com\/*",
        "https:\/\/reddit.com\/*",
        "https:\/\/www.reddit.com\/*",
        "http:\/\/redditfixerserver.herokuapp.com\/*"
    ],
    "page_action": {
        "default_icon": {
            "16": "newicons\/16.png",
            "19": "newicons\/19.png",
            "38": "newicons\/38.png",
            "48": "newicons\/48.png",
            "128": "newicons\/128.png",
            "256": "newicons\/256.png",
            "533": "newicons\/original.png"
        },
        "default_title": "SAMPLE_TITLE",
        "default_popup": "fragments\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/reddit.com\/*",
                "http:\/\/www.reddit.com\/*",
                "https:\/\/reddit.com\/*",
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "lib\/jquery-1.8.3.min.js",
                "lib\/jquery-appear.js",
                "lib\/jqmq.js",
                "scripts\/main.js"
            ],
            "css": [
                "scripts\/override.css"
            ]
        }
    ],
    "icons": {
        "16": "newicons\/16.png",
        "19": "newicons\/19.png",
        "38": "newicons\/38.png",
        "48": "newicons\/48.png",
        "128": "newicons\/128.png",
        "256": "newicons\/256.png",
        "533": "newicons\/original.png"
    },
    "options_page": "fancy-settings\/source\/index.html"
}