Codeforces WA Questions FB News Feed

Codeforces WA Questions FB News Feed

See your pending questions(WA,Compile error etc.) on Codeforces instead of distracting posts on Facebook news feed.

Merlin
Additional files are visible only to premium users

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
}