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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}