Codeforces WA Questions FB News Feed

See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed.

Codeforces WA Questions FB News Feed क्या है?

Codeforces WA Questions FB News Feed Aditya Choudhary द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Codeforces WA Questions FB News Feed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Kills the news feed and replaces it with your pending Questions(WA, Compile error etc.) on Codeforces, CLick on the question to open it in new tab for solving. That's it. You can still check your messages and notifications, post status updates, and do everything you could do before. You just won't get distracting news feed posts anymore.

No more wasting time on Facebook.Solve your pending questions and practice new ones!

What's New:

1.2.1.1
*Fix links to gym problems

Source Code on Github: https://github.com/adi11/CF-questions-extension                    

एक्सटेंशन की मूल जानकारी

नाम Codeforces WA Questions FB News Feed Codeforces WA Questions FB News Feed
ID ohjicmhfblgpmcbholdnnbjgamifmoli
आधिकारिक URL https://chrome.google.com/webstore/detail/codeforces-wa-questions-f/ohjicmhfblgpmcbholdnnbjgamifmoli
विवरण See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed.
फ़ाइल का आकार 915 KB
स्थापना संख्या 150
वर्तमान संस्करण 1.2.1.1
अंतिम अपडेट 2015-10-08
प्रकाशन तिथि 2015-10-08
रेटिंग 4.78/5 कुल 9 रेटिंग्स
डेवलपर Aditya Choudhary
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codeforces WA Questions FB News Feed",
    "version": "1.2.1.1",
    "description": "See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "kill.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "http:\/\/codeforces.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/logo_64.png",
        "48": "images\/logo_64.png",
        "128": "images\/logo_128.png"
    },
    "manifest_version": 2
}