Codeforces WA Questions FB News Feed
See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed.
What is Codeforces WA Questions FB News Feed?
Codeforces WA Questions FB News Feed is a Chrome extension developed by Aditya Choudhary, and its main feature is "See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed.".
Extension Screenshots
Download Codeforces WA Questions FB News Feed Extension CRX File
Download Codeforces WA Questions FB News Feed extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | ohjicmhfblgpmcbholdnnbjgamifmoli |
Official URL | https://chrome.google.com/webstore/detail/codeforces-wa-questions-f/ohjicmhfblgpmcbholdnnbjgamifmoli |
Description | See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed. |
File Size | 915 KB |
Installation Count | 150 |
Current Version | 1.2.1.1 |
Last Updated | 2015-10-08 |
Publish Date | 2015-10-08 |
Rating | 4.78/5 Total 9 Ratings |
Developer | Aditya Choudhary |
Payment Type | free |
Supported Languages | 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 } |