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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Aditya Choudhary, και η κύρια λειτουργία του είναι "See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Codeforces WA Questions FB News Feed

Λήψη αρχείων επέκτασης Codeforces WA Questions FB News Feed σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
}