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によって開発されたChromeの拡張機能で、その主な機能は「See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed.」です。
拡張機能のスクリーンショット
Codeforces WA Questions FB News Feed拡張機能のCRXファイルをダウンロード
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
拡張機能の基本情報
名前 | |
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 } |