Reddit Votify

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

Reddit Votify क्या है?

Reddit Votify kevinvincent द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bring back reddit upvotes and downvotes to the front page of any subreddit!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reddit Votify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}