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 |
官方網址 | 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 } |