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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
확장 프로그램 기본 정보
이름 | |
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 } |