Examine source code of We Offline

Inspect and view changes in We Offline source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "We Offline",
  "version": "0.0.5",
  "description": "Offline tweets.",
  "background": {
    "page": "background.html"
  },
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "unlimitedStorage"
  ],
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon19.png",
    "default_title": "Offline Tweets"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.weibo.com/*"
      ],
      "css": [
        "css/bootstrap.min.css",
        "css/flux.css"
      ],
      "js": [
        "js/jquery-1.10.2.min.js",
        "js/angular-1.2.6.min.js",
        "js/angular-route-1.2.6.min.js",
        "js/flux.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "template/panel.html",
    "images/glyphicons-halflings.png",
    "images/bg.png"
  ],
  "minimum_chrome_version": "21.0.1180.57"
}